Independent solution

How to solve this Poisson Distribution question

Setup

Setup

A Poisson count with mean 0.6 generates payments of 0, 1000, and 2000 when the count is 0, 1, and at least 2, respectively.

NPoisson(0.6)N\sim\operatorname{Poisson}(0.6)
Y=1000min(N,2)Y=1000\min(N,2)

Model

Model

Obtain the three payment-state probabilities from the Poisson masses at zero and one and the remaining upper-tail probability.

P(N=0)=e0.6P(N=0)=e^{-0.6}
P(N=1)=0.6e0.6P(N=1)=0.6e^{-0.6}
P(N2)=11.6e0.6P(N\ge2)=1-1.6e^{-0.6}

Compute

Compute

The three-state distribution gives mean 573.0897 and second moment 816892.5. Centering the second moment and taking its square root gives 698.8996.

E[Y]=1000P(N=1)+2000P(N2)=573.0897E[Y]=1000P(N=1)+2000P(N\ge2)=573.0897
E[Y2]=106P(N=1)+4106P(N2)=816892.5E[Y^2]=10^6P(N=1)+4\cdot10^6P(N\ge2)=816892.5
SD(Y)=E[Y2]E[Y]2=698.8996\operatorname{SD}(Y)=\sqrt{E[Y^2]-E[Y]^2}=698.8996

Answer

Answer

The payment standard deviation rounds to 699, corresponding to choice B.

699(B)\boxed{699\quad\text{(B)}}