Theorems

Theorem 3.1

For a discrete random variable X with PMF PX(x) and range SX:

  1. For any x, PX(x)0
  2. xSXPX(x)=1
  3. For any event BSX, the probability that X is in the set B is
P[B]=xBPX(x)

Theorem 3.2

For any discrete random variable X with range SX={x1,x2,} satisfying x1x2,

  1. FX()=0 and FX()=1.

  2. For all xx, FX(x)FX(x).

  3. For xiSX and ϵ, an arbitrarily small positive number,

    FX(xi)FX(xiϵ)=PX(xi).
  4. FX(x)=FX(xi) for all x such that xix<xi+1.

Each property of Theorem 3.2 has an equivalent statement in words:

  1. Going from left to right on the x-axis, FX(x) starts at zero and ends at one.
  2. The CDF never decreases as it goes from left to right.
  3. For a discrete random variable X, there is a jump (discontinuity) at each value of xiSX. The height of the jump at xi is PX(xi).
  4. Between jumps, the graph of the CDF of the discrete random variable X is a horizontal line.

Theorem 3.3

For all ba,

P[a<Xb]=FX(b)FX(a)
Warning

The definition of the CDF contains a loose inequality on the left (a<X) and a strict inequality on the right (Xb) which means the function is continuous from the right and not the left.


Theorem 3.4

The Bernoulli random variable X has expected value E[X]=p

Proof

E[X]=0PX(0)+1PX(1)=0(1p)+1(p)=p


Theorem 3.5

The geometric random variable X has expected value E[X]=1/p


Theorem 3.6

The Poisson random variable X has expected value E[X]=α


Theorem 3.7

The binomial random variable X has expected value

E[X]=np

The Pascal random variable X has expected value

E[X]=k/p

The discrete uniform random variable X has expected value

E[X]=(k+l)/2

Definitions

Random Variable

A random variable assigns a number to an outcome in the sample space.

A random variable is denoted by a capital letter X. The range of a random variable is denoted by SX, which refers to the set of possible values of X, using the sample space as notation.

Note

X becomes a discrete random variable if the set of all possible outcomes is countable.

There are three types of random variables:

  1. The random variable is an observation
  1. The random variable is a function of the observation
  1. The random variable is a function of another random variable

Probability Mass Function

The probability mass function (PMF) of a discrete random variable X is

PX(x)=P[X=x]
Abstract

X=x refers to the event consisting of all outcomes s of the underlying experiment such that X(s)=x. PX(x) refers to the function ranging over all real numbers x. That is, for any value x, PX(x) is the probability of X=x.


Bernoulli Random Variable

X is a Bernoulli random variable if the PMF if X has the form

PX(x)={1px=0px=10otherwise

where 0p1

Abstract

This PMF applies to sequential experiments with independent trials two possible outcomes. These types of experiments are called Bernoulli trials.


Geometric Random Variable

X is a geometric random variable if the PMF of X has the form

PX(x)={p(1p)x1x=1,2,...0otherwise

where 0p1

Abstract

This is useful for sequential experiments with sequential trials with x>2 outcomes. In general, the number of Bernoulli trials that take place until the first observation of the two outcomes is a geometric random variable.


Binomial Random Variable

X is a binomial random variable if the PMF of X has the form

PX(x)=(nx)px(1p)nx

where 0p1 and {nZ|n1}

Abstract

This is useful when we have a sequence of n independent Bernoulli trials each with a probability of success p, the number of successes is the binomial random variable.

Note

This is also equivalent to a Bernoulli random variable when n=1


Discrete Uniform Random Variable

X is a discrete uniform random variable if the PMF of X has the form

PX(x)={1lk+1x=k,k+1,...,l0otherwise

where k and l are integers such that k<l

Abstract

This is used for a constant probability across the range of X. It can be read as "X is uniformly distributed between k and l".


Todo

  • Add section for Pascal Random Variable


Poisson Random Variable

X is a Poisson random variable if the PMF of X has the form

PX(x)={αxeα/x!x=0,1,2,...0otherwise

where α>0

Abstract

A Poisson random variable describes occurrence of the phenomenon of interest, or arrival. This model often has an average rate, λ per unit of time, and some time interval T. In this time interval the number of arrivals X has a Poisson PMF with α=λT


Cumulative Distributive Function

The cumulative distributive function (CDF) of random variable X is

FX(x)=P[Xx]

Expected Value

The expected value of X is

E[X]=μX=xSXxPX(x)
Abstract

This can also be interpreted as the mean value.


Variance

Variance is defined as

Var[X]=E[(XμX)2]=E[X2]μX2=E[X2](E[X])2
Info

Var[aX+b]=a2Var[X]

Todo

  • Add sections for variance of different families of discrete random variables.


Standard Deviation

Standard deviation is defined as

σX=Var[X]

Related