Binomial distribution and normal approximation part I

Haneul Kim
5 min readJun 25, 2021

--

Photo by Haneul Kim

Table of Contents

1. Introduction

2. Binomial distribution

3. Example

4. Limitations

Introduction

At work, colleagues and I had a discussion about an algorithm that uses binomial distribution and normal approximation for binomial distribution. Even though I’ve studied the concepts before I could not visualize right away what happens as n or p gets larger so I’ve thought refresher on it would be a good idea. This also proves how applicable statistics concepts are, it is not just for finding probability of coin toss.

We will also discuss limitations of Binomial distribution in part I then way of mitigating it by normal approximation will be fully explained in part II of this blog series.

Binomial distribution

Binomial distribution is used to solve many practical problems in real life. When young, most people probably have been questioned “What is the probability of flipping 3 heads in 5 flips?” or something similar. Not many knew the answer or even if they did they could not solve similar questions that involved higher number of trials and successes. This is exactly where Binomial distribution can help, It is a special type of discrete probability distribution.

Binomial distribution is probability distribution of binomial random variable. Say you are flipping 10 coins(binomial experiment) and want to find out probability of getting “r” number of heads where “r” is any positive integer between 0~10. You would calculate probability of getting 1 heads in 10 toss, 2 heads in 10 toss, 3 heads in 10 toss and so on… number of heads in 10 flips are denoted as X, which are referred to as random variable and probability of each random variable is denoted as P(X=x(# of head)). Bar plot of these probability of random variables are called probability distribution of such experiment where x-axis would be random variables and probability in y-axis.

Three conditions must be satisfied for probabilities of random variables to exhibit behavior of binomial distribution.

  1. All trials must be independent and have equal success rate
  2. Each trial is binomial experiment (having only two outcomes)
  3. Fixed number of trials.

Deriving formula for binomial distribution

Let’s say a I have 30% chance of making a 3-pointer, which automatically assign failure percentage of 70%. I want to know the probability of making 2/5 3-pointers.

Probability of scoring 2 shots and missing 3 shots can be interpreted as (0.3)(0.3)(0.7)(0.7)(0.7) since probability of scoring is 0.3 and missing is 0.7. Denoting scoring as S, misses as M give us SSMMM but there are multiple ways of scoring two 3-pointers. It can be SMMMS, SMMSM, SMSMM, and so on…

So probability of scoring 2/5 must be multiplied by number of ways it could be scored.

Number of ways two 3-pointer could be scored can be calculated using combinatorics.

There are 10 different ways two 3-pointers can be made in 5 tries. Now multiplying it with probability of making 2 shots and missing 3 shots would be 10 * 0.3^2 * 0.7^3which equals to 0.3087 = 31%. I would make 2/5 3-pointers with 31% chance.

We always want to generalize our formula so we don’t reinvent the wheel.
Notice that # of ways 2 shots can be made in 5 tries was represented as 5C2 so if we want to find # of ways “r” shots can be made in “n” trials our formula can be generalized to nCr.

We know that probability of success is often denoted as p making failure q = 1-p.

Combining them we get generalized formula for binomial distribution.

Example

Q: Find the proability of getting 2 heads in 6 coin flips?

n = 6, total number of trials. Flipping heads is considered a success meaning flipping tail is considered failure. Each trial is independent and has equal probability of success therefore it satisfies first two conditions of binomial distribution. Lastly since we are working with fixed number of trials we satisfy all three conditions allowing us to use binomial distribution formula.

A:Probability of getting 2 heads in 6 coin flips is 23.4%

Limitations

Previous example only considers finding probability of exact random variable. If we want to find probability of getting 2 or 3 heads in 6 coins flips we simply add P(X=2) + P(X=3).

To find probability of getting 3 heads or less we simply add all probabilities of random variable 0,1,2,and 3.

This is okay when we are dealing with small number of trials like our example however what if we want to find probability of getting greater than or equal to 50 heads in 100 flips? You would need to calculate probability using binomial distribution 51 times. This is very cumbersome and prone to error, due to amazing computation powers this is no problem however it is always good to know more efficient way. To mitigate this limitation we approximate binomial distribution with normal distribution, this technique is called normal approximation for binomial distribution.

Conclusion

As a data scientist even though there are amazing libraries that does all the calculations for us, it is good idea to have deep understanding of concepts in statistics because not only is it fascinating but knowing inner working of ML, DL models will reduce time of development and debugging by a lot!

Thank you for reading and please comment if you find any incorrect information :)

--

--

Haneul Kim

Data Scientist passionate about helping the environment.