I have a probability problem with solution based on CLT.
I don't know how to solve it. Help me please.
Cleaner collects empty bottles on the street. Each bottle he finds with probability 0.2. Find the approximate value of the probability that he will collect at least 2200 bottles, if there are 10000 bottles in the street.
I know that I sould use the law of large numbers, but how?
Thank you.
The number of bottles found (denoted by $X$) follows a binomial distribution $\text{Binom}(N,p)$ where $N=10,000$ and $p=0.2$. Then, the probability $X\geq 2200$ can be computed precisely but since we're looking for an approximate value, let's look at the CLT.
We can write $X=\sum_{i=1}^NY_i$ where $Y_1,\ldots,Y_N$ are independent Bernoulli random variables each with probability $p$ of realizing $1$ . Then, by the Lindeberg-Levy CLT $$ \frac{X}{\sqrt{N}}-\sqrt{N}p=\sqrt{N}\left(\frac{1}{N}\sum_{i=1}^NY_i-p\right) $$ is approximately normal with mean $0$ and variance $\text{Var}(Y_i)=p(1-p)$. Thus, $$ \Pr(X\geq 2200)=\Pr\left(\frac{1}{\sqrt{p(1-p)}}\left(\frac{X}{\sqrt{N}}-\sqrt{N}p\right)\geq\frac{1}{\sqrt{p(1-p)}}\left(\frac{2200}{\sqrt{N}}-\sqrt{N}p\right)\right)\\ \approx 1-\Phi(5)\approx 2.86652\times 10^{-7}. $$ On the other hand, the exact probability (given by the binomial distribution) is $$ \sum_{k=2200}^{10000}\binom{10000}{k}p^k(1-p)^{10000-k}\approx 4.09963\times 10^{-7}. $$