Poisson Distribution
The Poisson distribution models how often rare events occur within a fixed interval of time or space. Think of counts like the number of car accidents at an intersection per week, typos per page, or radioactive decays per second. Where the binomial asks "how many successes in trials?", the Poisson asks "how many events in this interval?" with no fixed number of trials at all.

Poisson Distribution for Fixed Intervals
The Poisson distribution applies when you're counting events that meet three conditions:
- Events occur independently of each other (one accident doesn't make another more or less likely)
- Events occur at a constant average rate throughout the interval
- Events are rare relative to the size of the interval (you can't have infinitely many events piling up)
The single parameter (lambda) represents the average number of events per interval. It completely defines the distribution. If a hospital emergency room averages 4.2 patient arrivals per hour, then for a one-hour interval. For a two-hour window, you'd use .
Unlike the binomial, there's no cap on the number of events. can technically take any non-negative integer value (0, 1, 2, 3, ...), though very large values become extremely unlikely.

Probability Calculations with Poisson
The probability mass function (PMF) gives the probability of observing exactly events:
where:
- = the specific count you're finding the probability for (0, 1, 2, ...)
- = the average number of events in the interval
- (Euler's number)
- = factorial
Step-by-step example: A bookstore averages 3 online orders per hour (). What's the probability of exactly 5 orders in a given hour?
- Identify and
- Plug into the PMF:
- Compute the pieces: , ,
- Result:
So there's about a 10.1% chance of exactly 5 orders in that hour.
For cumulative probabilities like , sum the individual PMF values:
In practice, your calculator's poissonpdf and poissoncdf functions handle this. Use poissonpdf(λ, x) for exact probabilities and poissoncdf(λ, x) for cumulative (at most ) probabilities.

Poisson as a Binomial Approximation
The Poisson distribution can stand in for the binomial when direct binomial calculations become unwieldy. This works well when:
- The number of trials is large (typically )
- The probability of success is small (typically ; some texts allow )
- You set
Under these conditions, .
Why this works: When is large and is tiny, most trials result in failure, and the few successes are scattered independently across the trials. That pattern matches exactly what the Poisson models.
Example: Suppose 1 in 500 manufactured chips is defective (), and you inspect a batch of 1000 chips (). Finding the exact binomial probability of 3 or fewer defects requires heavy computation. Instead, use and calculate with the Poisson PMF. The approximation will be very close to the true binomial answer.
Properties of the Poisson Distribution
- Mean and variance are both equal to . This is a distinctive feature. If you see count data where the sample mean and sample variance are roughly equal, the Poisson may be a good model.
- The standard deviation is .
- The distribution is right-skewed for small and becomes more symmetric as increases.
- It's a discrete distribution since it models whole-number counts.
- The Poisson is related to the exponential distribution, which models the time between consecutive Poisson events. If events arrive at rate per hour, the waiting time between events follows an exponential distribution with the same parameter.
Note on the "memoryless property": The memoryless property actually belongs to the exponential distribution (the time between events), not to the Poisson distribution itself. The Poisson distribution does, however, have independent increments, meaning the number of events in non-overlapping intervals are independent of each other.