📊 Poisson Distribution Calculator
Calculate P(X=k), P(X≤k), and P(X>k) for a Poisson distribution. Visualise the probability mass function as a bar chart.
Probability Bar Chart
What is the Poisson Distribution?
The Poisson distribution is a discrete probability distribution that expresses the probability of a given number of events occurring in a fixed interval of time or space, when these events occur at a known average rate (λ, lambda) and independently of one another. Named after French mathematician Siméon Denis Poisson, who described it in 1837, the distribution is characterised by a single parameter λ — the mean (and also the variance) number of events in the interval. It is widely used to model count data in situations where events are rare relative to the number of possible opportunities.
The Poisson distribution is appropriate when: events occur randomly and independently (one event does not affect the probability of another); events cannot overlap (two events cannot occur at exactly the same instant); and the rate λ is constant across the observation period. Classic Poisson processes include radioactive decay counts, insurance claim arrivals, server request rates, and defect counts in manufacturing. The distribution is particularly useful when the average rate is relatively low — at high rates (λ > 30), the normal distribution provides a good approximation.
The probability mass function (PMF) gives the probability of exactly k events: P(X = k) = (e^−λ × λ^k) / k!. The cumulative distribution function (CDF) gives the probability of k or fewer events: P(X ≤ k) = Σ P(X = i) for i = 0 to k. In practice, the CDF is most commonly used for decision-making — for example, determining the probability that a call centre receives no more than 20 calls in the next hour given a mean arrival rate of 15 calls per hour.
Poisson Distribution Formulas
Common Applications of Poisson Distribution
-
1Call Centre ModellingEstimating the probability of receiving exactly k calls per hour when the average rate is λ calls/hour.
-
2Quality ControlModelling the number of defects per unit of product when defects occur rarely and independently.
-
3Medical EventsPredicting the number of hospital admissions per day for rare conditions.
-
4Traffic AnalysisModelling the number of vehicles passing a checkpoint per minute.
Frequently Asked Questions
The Poisson distribution models the number of events occurring in a fixed interval of time or space, given that events occur independently at a constant average rate λ. It is used for rare events.
Lambda is the average number of events per interval. It is both the mean and variance of the Poisson distribution. A larger λ shifts the distribution to the right and makes it more symmetric.
Use Poisson when n is large and p is small (rare events), such that np ≈ λ. The Poisson distribution approximates the binomial when n > 20 and p < 0.05.
The cumulative probability P(X ≤ k) is the sum of P(X = 0) + P(X = 1) + ... + P(X = k). It tells you the probability of observing at most k events.
Yes. The Poisson distribution is a discrete probability distribution — k must be a non-negative integer (0, 1, 2, ...). There is no upper limit on k, though probabilities become negligible after a few multiples of λ.
Real-World Applications
Common Mistakes
Poisson PMF Quick Reference (selected λ values)
| P(X = k) | λ = 1 | λ = 3 | λ = 5 |
|---|---|---|---|
| k = 0 | 0.3679 | 0.0498 | 0.0067 |
| k = 1 | 0.3679 | 0.1494 | 0.0337 |
| k = 2 | 0.1839 | 0.2240 | 0.0842 |
| k = 3 | 0.0613 | 0.2240 | 0.1404 |
| k = 5 | 0.0031 | 0.1008 | 0.1755 |
| k = 10 | 0.0000 | 0.0008 | 0.0181 |
References
- Poisson, S.D. Recherches sur la probabilité des jugements. Bachelier, 1837.
- Feller, W. An Introduction to Probability Theory and Its Applications. Wiley, 1968.
- Haight, F.A. Handbook of the Poisson Distribution. Wiley, 1967.
- Cameron, A.C. and Trivedi, P.K. Regression Analysis of Count Data. Cambridge University Press, 1998.
- Ross, S.M. Introduction to Probability Models. Academic Press, 2019.
Related Calculators
Binomial Distribution Calculator
Calculate binomial probability P(X=k), cumulative probabilities, mean, and variance.
Normal Distribution Calculator
Calculate probabilities and percentiles for the normal (Gaussian) distribution.
Probability Calculator
Calculate basic probability, combined events, and conditional probability.