Independent solution

How to solve this Poisson Distribution question

Answer in brief

Independent Poisson counts add, so the full-document count is Poisson with mean 10. Complementing its cumulative probability through four gives 0.970747, which rounds to choice C.

Setup

Setup

Let X_j be the count on page j and let S be the count over the entire document.

XjPoisson(0.10),S=j=1100XjX_j\sim\operatorname{Poisson}(0.10),\qquad S=\sum_{j=1}^{100}X_j

Model

Model

The independent Poisson components combine into another Poisson variable whose mean is the sum of the page means.

SPoisson(1000.10)=Poisson(10)S\sim\operatorname{Poisson}(100\cdot0.10)=\operatorname{Poisson}(10)

Compute

Compute

More than four is the complement of counts zero through four.

Pr(S>4)=1e10k=0410kk!\Pr(S>4)=1-e^{-10}\sum_{k=0}^{4}\frac{10^k}{k!}
Pr(S>4)=1e10(1+10+50+10006+1000024)\Pr(S>4)=1-e^{-10}\left(1+10+50+\frac{1000}{6}+\frac{10000}{24}\right)
Pr(S>4)=0.9707473119\Pr(S>4)=0.9707473119\ldots

Answer

Answer

The upper-tail probability rounds to 0.97.

0.97(C)\boxed{0.97\quad\text{(C)}}