Calculate probabilities for rare events in a fixed interval. Find PMF, CDF, and distribution parameters for count data.
Last updated: March 2026
The Poisson distribution models the probability of a given number of events occurring in a fixed interval of time or space, when these events occur independently and at a constant average rate. It's the go-to distribution for modeling rare events or count data.
The distribution is characterized by a single parameter λ (lambda), which represents both the mean and variance. This makes the Poisson distribution memoryless—the probability of future events doesn't depend on past occurrences. Examples include: number of emails per hour, radioactive decay events per second, customers arriving per minute, or typos per page.
A key property: for Poisson distributions, mean = variance = λ. If your data has variance much larger than mean, it's "overdispersed" and may not fit Poisson well. The distribution is discrete (k = 0, 1, 2, ...) and right-skewed for small λ, approaching normality as λ increases (>20).
Customer Service Calls
There's a 10.42% chance of exactly 6 calls, 88.93% chance of 6 or fewer calls, and 11.07% chance of more than 6 calls in the next hour. This helps with staffing decisions and capacity planning.
Models count of rare events in fixed interval. Characterized by rate λ. Events occur independently at constant rate. Examples: emails/hour, customers/minute, defects/item. Discrete distribution for k=0,1,2,...
Average rate of events per interval. Also equals both mean and variance (unique property). λ=4 means expect 4 events on average. Higher λ = more events expected. Must be λ>0.
Use when: (1) counting events in fixed interval, (2) events independent, (3) constant average rate, (4) rare events (λ small relative to possible outcomes). Classic: radioactive decay, call center arrivals, typos per page.
PMF P(X=k): probability of exactly k events. CDF P(X≤k): probability of k or fewer events (cumulative). Upper tail P(X>k)=1-CDF: probability of more than k. Use CDF for 'at most' questions.
Unique to Poisson: E[X]=Var(X)=λ. If data variance ≫ mean → overdispersion, consider negative binomial. If variance ≪ mean → underdispersion, unusual for count data. Test: variance-to-mean ratio ≈ 1.
Poisson: unlimited trials, rare events, rate λ. Binomial: fixed n trials, probability p per trial. Poisson is limit of Binomial as n→∞, p→0, np=λ. Use Poisson when n large, p small.
Poisson approaches normal distribution for large λ. Can approximate P(X=k) using normal(μ=λ, σ²=λ). Makes calculations easier. Use continuity correction: P(X=k) ≈ P(k-0.5 < Y < k+0.5) for normal Y.
Quality control (defects per unit), epidemiology (disease cases per region), web analytics (clicks per minute), finance (rare events like defaults), queueing theory (arrivals), telecommunications (packet arrivals), ecology (species per quadrat).
Related Tools
Gaussian probabilities.
Z-score from probability.
Binary outcome probabilities.
Time between events.
Equal probability distribution.
Calculate beta probabilities.