Poisson Distribution Formula
Calculate the probability of a given number of events in a fixed interval.
Models rare events like calls, defects, or arrivals.
The Formula
The Poisson distribution models the probability of a certain number of events occurring in a fixed time or space interval. It works best when events are independent and occur at a known average rate.
Variables
| Symbol | Meaning |
|---|---|
| P(X = k) | Probability of exactly k events occurring |
| λ | Average rate of events per interval (lambda) |
| k | Number of events you want the probability for |
| e | Euler's number (approximately 2.71828) |
| k! | k factorial |
Example 1
A call center averages 4 calls per minute. What is P(exactly 6 calls)?
λ = 4, k = 6
P(6) = (4⁶ × e⁻⁴) / 6! = (4096 × 0.01832) / 720
P(6) ≈ 0.1042 ≈ 10.4%
Example 2
A website gets 2 errors per hour on average. What is P(zero errors in an hour)?
λ = 2, k = 0
P(0) = (2⁰ × e⁻²) / 0! = (1 × 0.1353) / 1
P(0) ≈ 0.1353 ≈ 13.5%
When to Use It
Use the Poisson distribution when:
- Modeling the number of events in a fixed time period (calls, arrivals, emails)
- Counting defects per unit in manufacturing quality control
- Predicting traffic accidents, server failures, or rare diseases
- Events are independent and occur at a constant average rate