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
| Domain | Event | Typical λ |
|---|---|---|
| Call centre | Calls per minute | 3–8 |
| Web server | Requests per second | 10–100 |
| Insurance | Claims per week | 2–15 |
| Hospital A&E | Admissions per hour | 4–20 |
| Software QA | Bugs per 1,000 LOC | 1–5 |
| Nuclear physics | Decay events per minute | 0.1–50 |
Poisson vs Binomial — Decision Guide
| Criterion | Poisson | Binomial |
|---|---|---|
| Number of trials | No fixed upper limit | Fixed n |
| Rate type | Events per interval (time/area) | Probability per trial |
| Parameter | λ (rate) | n and p |
| Mean | λ | np |
| Mean = Variance? | Yes (always) | Only if p = 0.5 |
| Best when | n large, p small, λ = np moderate | n 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.
Related Calculators
Fixed trials with probability p
Normal Distribution CalculatorNormal approximation for large λ
Chi-Square CalculatorGoodness-of-fit test for counts
Mean CalculatorEstimate λ from observed data
Variance CalculatorVerify variance ≈ mean for Poisson data
Statistics HubAll statistics calculators & guides
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.