Open In App

Mathematics | Probability Distributions Set 4 (Binomial Distribution)

Improve
Improve
Like Article
Like
Save
Share
Report

The previous articles talked about some of the Continuous Probability Distributions. This article covers one of the distributions which are not continuous but discrete, namely the Binomial Distribution

 

Introduction –


To understand the Binomial distribution, we must first understand what a Bernoulli Trial is. A Bernoulli trial is a random experiment with only two possible outcomes. These two outcomes are usually referred to as Success and Failure, but they may be given any label necessary. Each Bernoulli trial or a Random experiment is independent of the other. 
For example, consider the scenario where we need to find the probability of the event of a even number showing up on die roll. 
If E = Even number shows up, then 
P(E) = \frac{3}{6} = 0.5 \text{ and, }\\ P(\bar{E}) = 1 - \frac{3}{6} = 0.5
Here P(E) (or simply ‘p’) may be referred to as the probability of Success and P(\bar{E}) (or simply ‘q’) may be referred as the probability of Failure. Notice that, 
p + q = 1 , since there are only two possible outcomes. 
Now consider that the experiment is repeated and we try to find the probability of success. We get, 
p = 0.5
This is the same probability as the first experiment. This is because the two experiments are independent i.e. the outcome of one experiment does not affect the other. 
Now that we know what a Bernoulli trial is, we can move on to understand the Binomial Distribution. 
 

A random experiment consists of n Bernoulli trials such that
1. The trials are independent.
2. Each trial results in only two possible outcomes, labeled as “success” and “failure.”
3. The probability of a success in each trial, denoted as p, remains constant.
The random variable X that equals the number of trials that result in a success 
is a binomial random variable 
with parameters 0 < p < 1 and n = 1, 2, ….
The probability mass function is given by-
f(x) = \binom{n}{x} p^x (1-p)^{n-x}



 

Probability Mass Function –


The above stated probability mass function is a legitimate probability function. 

    \begin{equation*} \begin{split} \sum\limits_{x=0}^{n} f(x) &= \sum\limits_{x=0}^{n} \binom{n}{x} p^x (1-p)^{n-x}\\ &=(p+(1-p))^n\\ &=(1)^n\\ &=1 \end{split} \end{equation*}


Notice that in the above formula, if we put n=1, we get the same result as a Bernoulli trial. Here x can take value 0 or 1(since number of successes can be 0 or 1 in one experiment). 
\text{P(Success)} = \binom{1}{1} p^1 (1-p)^{1-1} = p\\\\ \text{P(Failure)} = \binom{1}{0} p^0 (1-p)^{1-0} = 1-p = q\\\\ \text{Here, }p+q =1

 

Expected Value –


To find the Expected Value of the Binomial Distribution, let’s first find out the Expected value of a Bernoulli trial. Let p and q be the probabilities of Success(1) and Failure(0). 
\text{E[BT]} = p*1 + q*0 = p
Since the Binomial Distribution has n Bernoulli trials, the expected Value is multiplied by n. This is due to the fact that each experiment is independent and the Expected value of the sum of Random variables is equal to the sum of their individual Expected Values. This property is also called the Linearity of Expectation
E[X] = E[BT_1] +E[BT_2]+....+E[BT_n] = nE[BT] = np

 

Variance and Standard deviation –


The variance of the Binomial distribution can be found in a similar way. For n independent Random Variables, 

Var[X_1 + X_2 + .. + X_n] = Var[BT_1] + Var[BT_2] + .. + Var[BT_n] = nVar[BT]\\
Here, Var[BT] is the Variance of 1 Bernoulli trial. 

    \begin{equation*} \begin{split} \text{Var[BT]} &= E[X^2] - E[X]^2\\ &= (p*(1^2) + q*(0^2)) - p^2\\ &= p - p^2\\ &= p(1-p)\\ &= pq \end{split} \end{equation*}


Using this result to find out the variance of the Binomial Distribution. 
 

\text{Var[X]} = n\text{Var[BT]} = npq



The Standard Deviation of the distribution- 

    \begin{equation*} \begin{split} \sigma &= \sqrt{Var[X]}\\ &= \sqrt{npq}\\ \end{split} \end{equation*}



 

  • Example – An airline sells 65 tickets for a plane with capacity of 60 passengers. This is done because it is possible for some people to not show up. The probability of a person not showing up for the flight is 0.1. All passengers behave independently. Find the probability of the event that the airline does not have to arrange separate tickets for excess people. 
     
  • Solution – If more than 60 people show up, then the airline has to reschedule tickets for the excess number of people. Let X be the random variable denoting the number of passengers that show up. We have to find the probability of the event where X <=60. 
    Let p be the probability that a passenger shows up. p = 1 – 0.1 = 0.9. 
    q = 0.1 

        \begin{equation*} \begin{split} P(X\leq 60) &= 1-P(X\geq 61 )\\ &= 1 -(P(X=61) + P(X=62)+ P(X=63) \\ &\hspace{2em}+ P(X=64) + P(X=65))\\ &= 1 -(\binom{65}{61} p^{61} q^4+ \binom{65}{62} p^{62} q^3 + \binom{65}{63} p^{63} q^2 \\ &\hspace{2em}+ \binom{65}{64} p^{64} q^1 +\binom{65}{65} p^{65} q^0)\\ &= 1 -(0.1095 +0.0636 + 0.0272 + 0.0077 + 0.0011)\\ &= 1 - 0.2091\\ &= 0.7909 \end{split} \end{equation*}


     



 

References –


Binomial Distribution 
Stattrek.com
 



Last Updated : 17 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads