1

Attempt: the straightforward solution is according to this formula: $\sum_{k=120}^{133}\binom{220}{k} (\frac{1}{2})^{220-k}(\frac{1}{2})^{k}$. My problem is that term $\binom{220}{k}$ is a very large number. I can calculate it but I wonder if there any other simpler way to find the answer.

Kirill
  • 167
  • 8

1 Answers1

2

Indeed, $\sum\limits_{k=120}^{133}\binom{220}{k}(\frac{1}{2})^{220}$ will be the exact probability, but as in this question, it will be difficult to calculate manually.

Here, we transform it into a normal approximation to the binomial.

$n=220, p=\frac{1}{2}$ so $\mu=np=220\cdot \frac{1}{2}=110$ and $\sigma = \sqrt{npq}=\sqrt{220\cdot \frac{1}{2}\cdot \frac{1}{2}} = \sqrt{55}\approx 7.416$

We have $Pr(120\leq X\leq 133)\approx Pr(119.5\leq Y\leq 133.5)\approx Pr(\frac{119.5-110}{7.416}\leq Z\leq \frac{133-110}{7.416})\\ \approx A(3.17)-A(1.28)\approx 0.9992 - 0.8997=0.0995$

where $X$ is the binomially distributed variable for number of tails, $Y$ is the normal distribution with the same mean and variance as $X$, and $Z$ is the standard normal distribution and $A(z)$ denotes the area under the standard normal curve to the left of $z$.

The normal approximation will not be perfectly accurate, but it will provide a very close estimate. As it so happens, the exact value is closer to $0.099309159$, but the estimation got us within $0.0002$ of that value.

JMoravitz
  • 79,518