Modelling a random variable with the Binomial Distribution

A Bernoulli random variable is used to represent the 'number of successes' observed from a single observation of a process with two outcomes: 'success' or 'failure'. However, we noted that this model was limited in it's application because the number of successes could be either 00 or 11.

A binomial random variable extends upon this concept and represents the number of successes observed across observations of multiple Bernoulli random variables that have identical probability distributions and whose outcomes are independent of each other.

The binomial distribution is a probability distribution which describes the models a Bernoulli random variable XX. Like the Bernoulli distribution, the binomial distribution has a parameter pp which describes the probability of success for a single observation of the underlying Bernoulli random variable. It also introduces a new parameter nn which describes the number of observations which are taken. The formula for the binomial distribution is given by

P(X=x)=nCxpx(1p)nxP(X = x) = {}^nC_x p^x(1-p)^{n-x}

Where we recall that

nCx=n!(nx)!x!{}^nC_x = \frac{n!}{(n-x)!x!}

The mean and variance of the binomial distribution are given by:

E[X]=npE[X] = np and Var(X)=np(1p)\operatorname{Var}(X) = np(1-p)

...

Log in or sign up to see more