The Poisson Distribution is used for events that happen randomly in time or space, but at a constant average rate (). It is the discrete counterpart to the continuous Exponential distribution.
Poisson is perfect for things that happen independently and where the chance of two events happening at the exact same millisecond is effectively zero:
- The number of meteors seen in an hour ().
- The number of typos on a page of a book ().
- The number of customer arrivals in a night ().
Parameters
- (Lambda): The average number of events in the given time or space interval.
- : The specific number of events we want to find the probability for ().
Core Properties
The Poisson distribution has a very unique and elegant property: its mean and variance are identical.
- Mean ():
- Variance ():
Poisson Distribution
λ (lambda) is the 'average' rate. If λ=5, you'll most often see 4 or 5 events, but the distribution allows for the rare chance of seeing 10+.
Relationship to Binomial
The Poisson distribution can be derived as a limit of the Binomial distribution. If you have a Binomial experiment where the number of trials is very large () and the probability of success is very small (), but the expected number of successes remains constant (let's call it ), the Binomial distribution converges to the Poisson distribution. This is often called the Law of Rare Events.
Why does the Poisson distribution lack a distinct 'n' trials parameter? Because it models events happening in continuous time or space. You can divide an hour into infinitely many microscopic milliseconds. In each millisecond, the chance of an event happening is near zero, but across the whole hour, they add up to an expected rate . This is exactly why it represents the infinite limit of the Binomial distribution!
Advanced Practice
Example 1: Server Requests
A web server receives an average of 4 requests per minute (). What is the probability that it receives exactly 6 requests in a given minute?
Example 2: No Errors Allowed
A fiber optic cable experiences an average of 1.5 transmission errors per kilometer (). What is the probability that a 2-kilometer segment of this cable transmits data completely without error?