Poisson Distribution Calculator
Find exact and cumulative Poisson probabilities, mean, variance, and a full distribution table for any rate lambda.
📊 What is the Poisson Distribution?
The Poisson distribution is a discrete probability distribution that models the number of events occurring in a fixed interval of time or space, given that these events happen independently of each other at a constant average rate. It is named after the French mathematician Simeon Denis Poisson, who described it in 1837.
The Poisson distribution is widely used across many fields. In telecommunications, it models the number of calls arriving at a switchboard per minute. In healthcare, it describes the number of patients arriving at an emergency room per hour. In manufacturing quality control, it counts the number of defects per unit of product. In physics, it models the number of radioactive decay events per second. In ecology, it estimates the number of organisms found in a sample area. Any process involving rare, independent events with a known average rate is a candidate for Poisson modelling.
The Poisson distribution has a remarkable property: its mean and variance are both equal to the rate parameter lambda. This means that if you know the average event count, you also know the spread of the distribution. A small lambda produces a right-skewed distribution concentrated near zero. A large lambda produces an approximately symmetric, bell-shaped distribution, consistent with the Central Limit Theorem. When lambda exceeds about 10, the normal distribution N(lambda, lambda) gives a good approximation.
A common point of confusion is the relationship between the Poisson and binomial distributions. The Poisson distribution emerges as a limiting case of the binomial when the number of trials n becomes very large and the success probability p becomes very small, while the product np remains constant at lambda. This is why the Poisson distribution is sometimes called the law of rare events. If you have a binomial situation with n above 20 and p below 0.05, the Poisson with lambda = np is an accurate and computationally simpler approximation.
📐 Formula
📖 How to Use This Calculator
Steps
💡 Example Calculations
Example 1 - Call Center Arrivals
A call center receives 4 calls per minute on average. What is the probability of exactly 2 calls in the next minute?
Example 2 - Website Traffic Spike
A website gets an average of 2.5 errors per hour. What is the probability of getting 5 or more errors in the next hour?
Example 3 - Manufacturing Defects
A fabric producer averages 1.2 defects per square metre. What is the probability of zero defects in a 1 m2 sample?
❓ Frequently Asked Questions
🔗 Related Calculators
What is the Poisson distribution formula?
P(X = k) = (lambda^k x e^(-lambda)) / k!, where lambda is the average rate of events and k is the number of events. Both lambda and k must be non-negative.
What is the mean of the Poisson distribution?
The mean equals lambda. The variance also equals lambda. So the standard deviation is sqrt(lambda). This is the only common distribution where mean equals variance.
When should I use the Poisson distribution?
Use the Poisson distribution when counting rare, independent events over a fixed interval of time or space, where the average rate lambda is known and the probability of two events at the exact same moment is negligible.
What is the difference between Poisson and binomial distributions?
The binomial has a fixed number of trials n with success probability p. The Poisson has no upper bound on events and models rare occurrences with lambda = np. As n becomes large and p becomes small (while np = lambda stays fixed), the binomial converges to the Poisson.
What does lambda mean in the Poisson distribution?
Lambda is the average number of events per time (or space) interval. For example, if calls arrive at 3 per hour on average, lambda = 3 for a 1-hour interval, lambda = 1.5 for a 30-minute interval.
Can the Poisson distribution model continuous events?
No. The Poisson distribution is discrete and counts whole-number events (0, 1, 2, ...). For continuous event times, the exponential distribution (the time between successive Poisson events) is used instead.
What is the cumulative Poisson distribution?
The CDF P(X <= k) = sum of P(X=0) + P(X=1) + ... + P(X=k). It gives the probability of observing k or fewer events. The upper tail P(X >= k) = 1 - P(X <= k-1).
What are examples of Poisson-distributed random variables?
Number of phone calls to a call center per hour, number of cars passing a checkpoint per minute, number of defects per square metre of fabric, radioactive decay counts per second, and number of server requests per second during normal load.