Poisson distribution phone calls

probability

In a call center the number of received calls in a day can be modeled by a Poisson random variable. We know that on average about 0.5% of the time the call center receives no calls at all. How can I find the distribution of the number of received calls in a day?

Best Answer

Let $X$ be the number of received calls in a day, i.e. $X\sim Pois(\lambda)$.

$P(X=0)=e^{-\lambda} = 1/200 \Rightarrow \lambda = \ln(200)$. Our number of calls in a day is distributed $Pois(\ln(200))$.

Related Question