How to Calculate a Poisson Probability

For rare events happening λ times on average, calculates the probability of exactly k occurrences as e^(−λ) × λ^k ÷ k!. It fits counts such as customers per hour or accidents per day.

The Poisson distribution describes rare events occurring at a steady average rate, and gives the probability of exactly kk of them.

P(X=k)=eλλkk!P(X = k) = \dfrac{e^{-\lambda} \lambda^k}{k!}

Here λ\lambda is the average number of events in the window you are looking at. A Poisson distribution has the unusual property that its mean and its variance are both λ\lambda.

Example

A shop receives 3 customers an hour on average. What is the chance that exactly 2 arrive in a given hour, so λ=3\lambda = 3 and k=2k = 2?

P(X=2)=e3×322!=0.049787×92=0.2240P(X = 2) = \dfrac{e^{-3} \times 3^2}{2!} = \dfrac{0.049787 \times 9}{2} = 0.2240

About 22.4%.

Adding the cases of 0, 1 and 2 customers gives a 42.3% chance of two or fewer.

When it applies

Where it is used

When a binomial distribution has a very large nn and a very small pp, with a moderate np=λnp = \lambda, it converges to the Poisson distribution. It is the law of "many opportunities, each unlikely".