Poisson Distribution
Compute P(X = k) and P(X ≤ k) in Poisson(λ).
Poisson distribution: counting rare events
The Poisson distribution counts how many events land in a fixed interval of time, space or volume, assuming those events are independent and arrive at a steady average rate λ: P(X = k) = e^(−λ)·λ^k / k!. One quirk stands out here: mean equals variance equals λ. It also stands in for the binomial(n, p) when n is large and p is small, taking λ = n·p. Say a bakery serves 3 customers per minute on average. The chance of seeing exactly 5 in some minute works out to e^(−3)·3^5 / 120 ≈ 0.1008, around 10.08%. Siméon Poisson introduced it in 1837, and Bortkiewicz later made it famous in 1898 by fitting it to deaths by horse kicks in the Prussian army.
Applications
Think of queueing theory, with M/M/1 systems in telecom and call centers, or radioactive decay, server failures and request arrivals. It also covers mutations per gene in genomics, defects per square metre of fabric in quality control, and goals per match in football, which average around 1.5 in the Premier League.
FAQ
When can I use Poisson instead of binomial? When n is large, usually n > 50, and p is small, around p < 0.1, so that λ = n·p stays moderate. The bigger n gets, the closer the approximation lands.
Why does mean equal variance? It's baked into the structure of the distribution. So if your data shows variance well above the mean (overdispersion), Poisson is simply the wrong model and you'd want the negative binomial instead.
Can k be non-integer? No. Poisson is about counting discrete events, so k ∈ {0, 1, 2, …}. If you care about the continuous waiting time between events instead, reach for the exponential distribution.
What if events are not independent? Then the model falls apart. Bursts of clustered arrivals call for a Cox process or a negative binomial, and counts that are correlated may need a Hawkes process.
Related Tools
Binomial Distribution
Compute P(X = k) and P(X ≤ k) in binomial distribution B(n, p).
Poisson Probability Calculator
Computes probability of k occurrences in a Poisson distribution with mean lambda using the classic exponential factorial formula.
Common-Language Effect Size (CLES)
Computes the common-language effect size (CLES), also called the probability of superiority. It's the most intuitive way to communicate a difference between groups: the probability that a value drawn from the first group is larger than a value drawn from the second. A CLES of 0.70 means that, in 70% of random comparisons, the first group wins. Ties count as half. It's the friendly version of Cliff's delta. Enter the two groups of values.
Normal Distribution PDF/CDF
Compute Normal(μ, σ) PDF and CDF at a point.
Binomial Probability Calculator
Computes probability of exactly k successes in n independent trials with probability p using binomial coefficient combination formula.
Exact CI for a Poisson Mean
Computes the exact confidence interval for the mean of a Poisson distribution, from an observed event count. It's the right tool for count data: number of defects per batch, accidents per month, particles detected per interval. The calculation uses the exact relationship between the Poisson and the chi-square distribution (Garwood's method), giving reliable bounds even when very few events were observed. Enter the number of events and the confidence level.
The results provided by this tool are for general informational and educational purposes only and do not constitute professional, financial, medical, legal, tax or accounting advice. Always confirm important decisions with a qualified professional and official sources.