If the average number is 16, what is the probability that a given trial will trap between 12 and 20 atoms, inclusive? What would this probability be if the distribution is instead Gaussian, with both a mean and a variance of 16?
I got the formula which is $Pk = \cfrac{u^k}{k!}\times e^{-u}$ where $u = 16$ = average but not sure what k is?
Thank you for the help
The probability mass function for a Poisson random variable $X$ with mean $\lambda$ is $$\Pr[X = x] = e^{-\lambda} \frac{\lambda^x}{x!}, \quad x = 0, 1, 2, \ldots.$$ Applied to your question, if the mean number of atoms trapped in a trial is $\lambda = 16$, then the probability that the observed number of atoms trapped is at least $12$ and no more than $20$ is $$\Pr[12 \le X \le 20] = \sum_{x=12}^{20} \Pr[X = x] = \sum_{x=12}^{20} e^{-16} \frac{16^x}{x!}.$$ This is not too many terms to compute with a hand calculator.
For the normal approximation, we observe that a Poisson distribution has its variance equal to its mean; i.e., $$\operatorname{Var}[X] = \operatorname{E}[X] = \lambda,$$ so we would choose a normal distribution whose mean and variance are $\mu = \sigma^2 = 16$. Let $$Y \sim \operatorname{Normal}(\mu = 16, \sigma = 4),$$ and with a continuity correction for this approximation, we would calculate $$\Pr[12 \le X \le 20] \approx \Pr[11.5 \le Y \le 20.5] = \Pr\left[\frac{11.5 - 16}{4} \le \frac{Y - \mu}{\sigma} \le \frac{20.5 - 16}{4}\right] = \Pr[-1.125 \le Z \le 1.125],$$ where $Z$ is a standard normal random variable. We would then use a table to compute this probability, which is approximately $0.739441$. By comparison, the exact probability using the Poisson calculation is $0.741175$. So our approximation is reasonably good!
Exercise: What would the normal approximation have been if we did not employ the continuity correction; i.e., what is $\Pr[12 \le Y \le 20]$? Note that this is in fact the question that is being asked in the second part!