Mathematics · Probability & Statistics · Probability Distributions
Poisson Distribution Calculator
Calculates the Poisson probability mass function P(X = k), cumulative distribution P(X ≤ k), and the complement P(X > k) for a given rate parameter λ and number of events k.
Calculator
Formula
P(X = k) is the probability of observing exactly k events. λ (lambda) is the average number of events occurring in the fixed interval (the rate parameter, λ > 0). k is the number of events of interest (k = 0, 1, 2, …). e is Euler's number (≈ 2.71828). k! is the factorial of k. The cumulative probability P(X ≤ k) is the sum of P(X = j) for j from 0 to k.
Source: Poisson, S.D. (1837). Recherches sur la probabilité des jugements. Also: DeGroot & Schervish, Probability and Statistics, 4th ed., Pearson.
How it works
The Poisson distribution describes the likelihood of a given number of independent events occurring within a fixed interval — such as per hour, per square metre, or per page — when the average rate λ is known. It is particularly valuable for modelling rare or low-probability events: radioactive decay, server requests per second, customer arrivals per minute, or defects per unit of product. The key assumptions are that events occur independently, at a constant average rate, and two events cannot occur at precisely the same instant.
The probability mass function (PMF) is P(X = k) = (λ^k · e^(−λ)) / k!, where λ is the mean number of events per interval, k is the exact count of events you want to evaluate (a non-negative integer), e ≈ 2.71828 is Euler's number, and k! is the factorial of k. A remarkable property of the Poisson distribution is that its mean and variance are both equal to λ, so the standard deviation is √λ. The cumulative distribution function (CDF), P(X ≤ k), is the sum of PMF values from 0 to k, giving the probability of observing at most k events. The survival function P(X > k) = 1 − P(X ≤ k) gives the probability of observing more than k events.
Practically, the Poisson distribution is used wherever counts of arrivals, failures, or occurrences are needed. Call centres use it to plan staffing based on expected call volumes. Network engineers model packet arrivals and buffer overflows. Epidemiologists estimate disease incidence rates. Actuaries price insurance policies for accident frequency. Quality control engineers model defect rates on production lines. Wherever you have a count process with a stable rate and independent occurrences, the Poisson distribution provides an elegant and accurate probabilistic model.
Worked example
Scenario: A hospital emergency department receives an average of λ = 4 patient arrivals per hour. What is the probability that exactly k = 6 patients arrive in the next hour?
Step 1 — Apply the PMF formula:
P(X = 6) = (4^6 · e^(−4)) / 6!
Step 2 — Calculate each component:
4^6 = 4096
e^(−4) ≈ 0.018316
6! = 720
Step 3 — Combine:
P(X = 6) = (4096 × 0.018316) / 720 = 75.06 / 720 ≈ 0.10420
There is approximately a 10.42% chance of exactly 6 arrivals.
Step 4 — Cumulative probability P(X ≤ 6):
Sum P(X = j) for j = 0, 1, 2, 3, 4, 5, 6:
P(0) ≈ 0.01832, P(1) ≈ 0.07326, P(2) ≈ 0.14653, P(3) ≈ 0.19537, P(4) ≈ 0.19537, P(5) ≈ 0.15629, P(6) ≈ 0.10420
P(X ≤ 6) ≈ 0.88933 — about an 88.93% chance of 6 or fewer arrivals.
Step 5 — Survival probability P(X > 6):
P(X > 6) = 1 − 0.88933 ≈ 0.11067
There is roughly an 11.07% chance of more than 6 arrivals in the hour.
Distribution properties: Mean = Variance = λ = 4; Standard Deviation = √4 = 2.
Limitations & notes
The Poisson distribution rests on strict assumptions that may not hold in practice. First, events must be independent — if one event increases or decreases the probability of another (clustering or inhibition), Poisson is inappropriate; consider the Negative Binomial distribution for overdispersion (variance greater than mean). Second, the rate λ must be constant over the observation interval; if the rate changes over time (e.g., rush-hour traffic), a non-homogeneous Poisson process or piecewise model is needed. Third, k must be a non-negative integer; this calculator floors non-integer inputs to the nearest whole number. Fourth, for very large λ (typically λ > 20–30), the Normal approximation (μ = λ, σ = √λ) becomes accurate and computationally easier. Fifth, the Poisson distribution models event counts, not continuous measurements — do not use it for reaction times, distances, or durations (use Exponential or Gamma distributions for those). Finally, numerical precision may degrade for extremely large k or λ; this calculator uses log-space arithmetic to mitigate overflow, but values of k or λ above ~170 may still produce inaccurate results in standard floating-point arithmetic.
Frequently asked questions
What is the rate parameter λ in the Poisson distribution?
Lambda (λ) is the average number of events expected to occur in the defined interval — for example, 3 calls per minute or 0.5 defects per unit. It must be a positive real number. λ completely characterises the Poisson distribution: both the mean and variance equal λ, so a larger λ shifts the distribution right and makes it more spread out.
What is the difference between the PMF and the CDF in the Poisson distribution?
The PMF, P(X = k), gives the probability of observing exactly k events. The CDF, P(X ≤ k), gives the probability of observing k events or fewer — it is the cumulative sum of the PMF from 0 up to k. Use the PMF when you need a specific count; use the CDF when you need an upper-bound probability (e.g., 'at most 5 failures').
When should I use the Poisson distribution instead of the Binomial distribution?
The Poisson distribution is best suited when n (number of trials) is very large and p (probability of success) is very small, so that np = λ is moderate. It avoids the need to know n and p separately. As a rule of thumb, use Poisson when n ≥ 20 and p ≤ 0.05, or n ≥ 100 and p ≤ 0.1. For moderate n and p, the Binomial remains more accurate.
Why are the mean and variance both equal to λ in the Poisson distribution?
This is a fundamental algebraic property derived from the moment generating function of the Poisson distribution. It means that as the average rate increases, so does the variability — the distribution becomes more spread out proportionally. In practice, if observed data show variance significantly greater than the mean (overdispersion), the Poisson model may be a poor fit and a Negative Binomial model should be considered.
Can the Poisson distribution model events over areas or volumes, not just time?
Yes. The Poisson distribution applies to any fixed interval over which events occur independently at a constant rate — this includes intervals of time, length, area, or volume. For example, λ might represent 2 flaws per square metre of fabric, or 0.3 mutations per kilobase of DNA. The interval type does not change the mathematics; only the interpretation of λ and k changes. Spatial Poisson processes are widely used in ecology, materials science, and telecommunications.
Last updated: 2025-01-15 · Formula verified against primary sources.