The Poisson Process
The Poisson process counts independent, exponentially-spaced arrivals in a fixed interval.
Previously, we modeled the time between independent events using the exponential distribution. We gave the example of customers arriving at a coffee shop at a rate of per hour (where the tick is one hour). The time between arrivals follows . This gives us an expected gap of 20 minutes between customers.
Note: If the tick were 1 minute, instead of 1 hour, . The tick is important!
Now we flip the question. Instead of asking, “How long until the next customer?”, we ask: “How many customers arrive in a given window of time?” If we watch the shop for an entire 8-hour shift, how many customers should we expect?
The expected value is obvious. An average of 3 customers per hour. 8 hours. We should expect 24 customers in 8 hours. But what about every other possibility?
The answer is the Poisson distribution.
From Exponential to Poisson
The derivation starts with the same setup. Events arrive at a constant average rate . We want to count how many events occur in a fixed interval of length .
Step 1: Partition the interval. Slice into equal subintervals, each of length .
Step 2: Probability per subinterval. For large , each subinterval is so short that at most one event can fall in it. The probability of exactly one event in a subinterval of length is approximately:
Step 3: Recognize the binomial. Each subinterval either contains an event or it doesn’t, independently of the others. That’s a classic binomial setup: independent trials, each with success probability . The total number of events across all subintervals follows:
Here is the number of subintervals (trials) and is the probability of exactly one event in each subinterval. Notice that as grows, shrinks proportionally. We continue to slice the interval ever finer while keeping the total expected count fixed.
The probability of exactly events is:
Step 4: Take the limit. Let — infinitely many, infinitely thin subintervals. Each factor converges separately:
Multiplying the pieces together:
This is the Poisson distribution.
The Poisson Distribution
The Poisson probability mass function (PMF) has one parameter: , the expected number of events in the interval.
Note: We say PMF rather than PDF because is discrete. You can have 0, 1, 2, or 24 customers, but you can’t have 3.7 customers. The exponential distribution used a PDF because time is continuous and can take any non-negative real value.
Its key properties:
| Property | Formula |
|---|---|
| Mean (expected value) | |
| Variance | |
| Standard deviation |
The mean and variance are equal. This is the fingerprint of the Poisson distribution — if you fit a Poisson model to real data and find the sample mean and variance are very different, that’s a signal the Poisson isn’t the right model.
Back to the coffee shop. With and , we get . Over a full shift, the expected number of customers is 24. But how does the probability spread?
Even the most likely outcome () only occurs about 8% of the time. The probability spreads across a wide range. That’s typical for a Poisson distribution with a large mean — it looks roughly bell-shaped, which is no accident (the central limit theorem explains why).
Interactive PMF
Use the slider to see how shapes the distribution.
A few things to notice:
- Small : the distribution is right-skewed, concentrated near zero.
- Large : the distribution spreads and approaches a normal distribution.
- The peak always sits near , confirming that is both the mean and the most likely value (approximately).
Two Sides of the Same Coin
The exponential distribution and the Poisson distribution describe the same underlying process from two different perspectives. Both stem from the same assumption: events arrive independently at a constant average rate .
| Question | Distribution | Type |
|---|---|---|
| How long until the next event? | Continuous | |
| How many events in time ? | Discrete |
If you know for one, you know it for the other. The two distributions are mathematically inseparable. They are two ways of viewing the same process.
Real-World Examples
Anywhere events arrive at a roughly constant, independent rate, you can count them with the Poisson distribution:
-
Customer arrivals. A coffee shop sees arrivals per hour. In an 8-hour shift, the customer count follows .
-
Server requests. A web server handles requests per minute. The number of requests in a 10-second window follows .
-
Manufacturing defects. A factory produces defects at a rate of per item. In a batch of 1,000 items, the defect count follows .
-
Natural events. A seismograph records minor tremors at per day. The weekly count follows .
The same caveats apply as with the exponential: the Poisson is the right model when events are independent and the rate is roughly constant. If customers tend to arrive in groups, or if the rush-hour rate is three times the off-peak rate, a more nuanced model is needed.