Poisson Distribution Calculator

Reviewed by CalcMulti Editorial Team·Last updated: ·Statistics Hub

The Poisson distribution models the number of events occurring in a fixed interval of time or space, given a known average rate λ. It applies whenever events occur independently at a constant average rate — making it ideal for queuing theory, web traffic analysis, and rare event modelling.

This calculator computes the exact probability P(X=k), cumulative P(X≤k), and P(X>k) for any rate λ and observed count k, plus the full distribution table up to k=20.

Formula

P(X = k) = (λ^k × e^−λ) / k!

λ
average rate — expected number of events per interval (λ > 0)
k
observed number of events (k = 0, 1, 2, ...)
e
Euler's number ≈ 2.71828
k!
factorial of k — e.g. 4! = 24

Expected events per interval (e.g. per hour, per page)

Non-negative integer

Common Poisson Rates by Domain

DomainEventTypical λ
Call centreCalls per minute3–8
Web serverRequests per second10–100
InsuranceClaims per week2–15
Hospital A&EAdmissions per hour4–20
Software QABugs per 1,000 LOC1–5
Nuclear physicsDecay events per minute0.1–50

Poisson vs Binomial — Decision Guide

CriterionPoissonBinomial
Number of trialsNo fixed upper limitFixed n
Rate typeEvents per interval (time/area)Probability per trial
Parameterλ (rate)n and p
Meanλnp
Mean = Variance?Yes (always)Only if p = 0.5
Best whenn large, p small, λ = np moderaten moderate, p not extreme

Case Study: IT Help Desk Staffing

An IT manager needed to determine how many support staff to schedule per hour. Historical data showed an average of λ=6 tickets per hour arriving independently, consistent with a Poisson process (variance ≈ mean in data).

Key probabilities: P(X≤6) ≈ 0.606 (only 60.6% of hours see 6 or fewer tickets), P(X≥9) ≈ 0.153 (15.3% of hours see 9+ tickets — staff would be overwhelmed with 2 agents). P(X≥12) ≈ 0.020 (2% chance of extreme volume).

The manager scheduled 3 agents per hour (handling up to ~9 tickets comfortably), covering P(X≤9) ≈ 0.847 (84.7%) of hours without queue build-up. For expected peak hours (λ=10), the model predicted needing 4 agents. Poisson modelling reduced overtime costs by 22% compared to flat 4-agent scheduling.

Disclaimer

This calculator is for educational purposes only and does not constitute professional advice. Results are based on standard mathematical formulas. Always verify critical calculations with a qualified professional before making important decisions.

Frequently Asked Questions