Poisson Distribution Calculator
Calculate Poisson probabilities for any rate and event count
Poisson Distribution Calculator
The Poisson distribution models the number of events that occur in a fixed interval of time, distance, or space — when events happen independently and at a constant average rate. Classic examples include website visits per minute, defects per meter of wire, emails per hour, and bacteria colonies per petri dish.
This calculator computes exact probabilities and cumulative probabilities for the Poisson distribution given a rate parameter λ (lambda) and an observed count k.
How to Use This Calculator
- Enter λ (lambda) — the average number of events per interval. For example, if calls arrive at 4 per hour, λ = 4.
- Enter k — the number of events you want to calculate a probability for (whole number ≥ 0).
- Select mode — "exactly k", "at most k" (CDF), or "at least k" (survival function).
- The calculator returns the probability P(X = k), P(X ≤ k), or P(X ≥ k) along with the mean and standard deviation.
Poisson Probability Formula
The probability mass function is:
P(X = k) = e-λ × λk / k!
where e ≈ 2.71828 is Euler's number.
The mean equals λ, and uniquely for the Poisson distribution, the variance also equals λ. The standard deviation is √λ.
Real-World Examples
Call center: A support line receives 6 calls per hour on average. What is the probability of exactly 4 calls in any given hour? λ = 6, k = 4 → P ≈ 0.1339 (13.4%).
Traffic accidents: A stretch of road averages 1.2 accidents per week. What is the probability of at least 2 accidents in a week? λ = 1.2, k = 2, mode = "at least" → P ≈ 0.337.
Radioactive decay: A sample emits 3 particles per second. What is the probability of zero emissions in a second? λ = 3, k = 0 → P = e-3 ≈ 0.0498.
Poisson vs. Binomial Distribution
The Poisson is derived as the limiting case of the binomial as n → ∞ and p → 0, keeping λ = np constant. When n ≥ 20 and p ≤ 0.05, use Poisson with λ = np for a simpler calculation. When the number of trials is known and fixed, use the binomial instead.