Poisson Distribution
Poisson distribution probability calculations
The Poisson distribution models the number of events occurring in a fixed interval of time, distance, area, or volume. It's built around a single parameter, (lambda), which represents the average number of events in that interval.
The probability mass function (PMF) gives you the probability of observing exactly events:
- is the random variable representing the number of events in the interval
- is the specific number of events you're calculating the probability for (must be a non-negative integer: 0, 1, 2, …)
- is the mathematical constant, approximately 2.71828
To calculate a Poisson probability:
- Identify , the average number of events in the interval
- Decide on , the number of events you want the probability for
- Plug and into the PMF formula and simplify
Example: A call center receives an average of 4 calls per hour, so . What's the probability of receiving exactly 6 calls in a given hour?
There's roughly a 10.4% chance of getting exactly 6 calls in that hour.
Other situations where the Poisson distribution applies:
- Number of defects per 1000 meters of cable (fixed interval of distance)
- Number of typos per page in a manuscript (fixed interval of area)
The key idea is that you're counting how many times something happens within a defined window.

Poisson approximation of binomial distribution
The Poisson distribution can serve as a handy approximation for the binomial distribution when the following conditions are met:
- The number of trials is large (typically )
- The probability of success is small (typically )
- You set
When these hold, a distribution is well-approximated by a distribution. This is sometimes called the law of rare events: you have many opportunities for something to happen, but on any single trial, it's unlikely.
Why bother with the approximation? Binomial calculations with large can get unwieldy because of the term. The Poisson formula is simpler to compute since it doesn't involve that combination.
Example: A factory produces 500 items per day, and each item has a 0.002 probability of being defective. Here and , so . Instead of using the binomial formula with , you can use a Poisson distribution with to estimate the probability of, say, 0 or 1 defective items.

Interpreting Poisson distribution parameters
A distinctive feature of the Poisson distribution is that its mean and variance are both equal to :
- Mean (expected value):
- Variance:
- Standard deviation:
The mean tells you how many events to expect on average per interval. The standard deviation tells you how much the actual count typically varies from that average. Because both the mean and variance equal , a larger average also means more spread in the data.
Example: If an average of 10 customers arrive at a store per hour ():
- You'd expect about 10 customers in any given hour
- The standard deviation is , so it's common for the actual count to be roughly 7 to 13 in a typical hour
If you ever see count data where the mean and variance are close to equal, that's a good signal that a Poisson model might be appropriate.
Advanced Concepts in Poisson Distribution
- Independent events: The Poisson distribution assumes events occur independently of each other. One event happening doesn't make the next more or less likely.
- Intensity function: In more complex applications, the rate parameter can vary over time or space rather than staying constant. This leads to what's called a non-homogeneous Poisson process.
- Point process: The Poisson distribution is often used to model point processes, where events occur randomly across a continuous space or time interval (e.g., locations of trees in a forest or arrival times at a hospital).