A Poisson process is a mathematical model for random events that occur over time, such as phone calls arriving, radioactive decays, or customers entering a store. It is useful when events happen one at a time, independently, and at a steady average rate. Instead of predicting the exact time of the next event, the model predicts probabilities for counts and waiting times.
This makes it a powerful tool in physics, engineering, biology, and service systems.
The key parameter is the rate λ, which means the average number of events per unit time. In any time interval of length t, the number of events follows a Poisson distribution with mean λt. The gaps between neighboring events follow an exponential distribution, which gives the probability of waiting a certain amount of time until the next event.
The exponential waiting time is memoryless, meaning that if no event has happened yet, the future waiting time has the same distribution as it did at the start.
Understanding Statistics: The Poisson Process
A useful way to picture this model is to divide time into many tiny intervals. In a sufficiently short interval, the chance of one event is roughly proportional to its length. The chance of two or more events in that same tiny interval is so small that it can be ignored.
This small-interval rule builds the larger pattern. Add many short intervals together and the total number of events has a predictable spread. Counts from separate, non-overlapping intervals do not affect each other.
A busy minute does not force the next minute to be busy or quiet. This independence is an assumption about the system, not a fact that every random-looking sequence must follow.
The rate must be tied to a clear unit. A detector might record six decays per minute, while a help desk might receive six requests per hour. Changing from minutes to seconds changes the numerical rate, though it does not change the underlying process.
Students should always check units before calculating probabilities. The expected count is found by multiplying the rate by the interval length. If the rate is three events per hour, then the expected number in four hours is twelve.
Expected does not mean guaranteed. A particular four-hour period can contain far fewer or far more events. In fact, this model has an important feature where the size of the typical variation grows with the mean count.
Waiting times give a second view of the same data. Long gaps can occur even when the average rate is steady. Clusters can occur too.
Human intuition often treats a long quiet period as evidence that an event is due soon. That idea is wrong for a genuine Poisson process. The process has no clock that needs to catch up.
A radioactive atom that has not decayed for a long time is not more likely to decay in the next second simply because it survived earlier seconds. This feature is useful in reliability work, but it only applies when the event rate truly stays constant.
Real data rarely fit a model perfectly. A store receives more customers at lunch than late at night, so one constant rate is not suitable for the whole day. Calls can trigger more calls, which breaks independence.
Traffic accidents may rise during rain, making the rate depend on conditions. Events may be missed by a sensor, or several events may be recorded as one when equipment has limited resolution. To test the model, collect counts in equal time blocks and compare their average with their variance.
For a close Poisson fit, these values should be similar. Plotting event times can reveal changing rates, repeated patterns, or clustering. The model is most valuable when its assumptions are checked rather than accepted automatically.
Key Facts
- Rate parameter: λ = average number of events per unit time.
- Event count in time t: N(t) ~ Poisson(λt).
- Poisson probability: P(N(t) = k) = e^(-λt)(λt)^k / k!.
- Mean and variance of counts: E[N(t)] = λt and Var(N(t)) = λt.
- Waiting time to the next event: T ~ Exponential(λ), with f(t) = λe^(-λt) for t ≥ 0.
- Memoryless property: P(T > s + t | T > s) = P(T > t) = e^(-λt).
Vocabulary
- Poisson process
- A random process that counts independent events occurring over time at a constant average rate.
- Rate parameter
- The value λ that gives the average number of events expected per unit time.
- Poisson distribution
- A probability distribution for the number of events in a fixed interval when events follow a Poisson process.
- Exponential distribution
- A probability distribution that describes the waiting time until the next event in a Poisson process.
- Memoryless property
- The property that the probability of waiting longer does not depend on how long you have already waited.
Common Mistakes to Avoid
- Using λ as the expected count for every interval is wrong because the expected count over time t is λt, not just λ.
- Assuming events must be evenly spaced is wrong because a Poisson process has random gaps, often with clusters and long quiet periods.
- Using a Poisson distribution for waiting times is wrong because counts are Poisson but waiting times are exponential.
- Ignoring the independence assumption is wrong because the Poisson process model requires that events in separate time intervals do not influence each other.
Practice Questions
- 1 A sensor detects particles at an average rate of λ = 4 particles per minute. What is the probability that exactly 6 particles are detected in 2 minutes?
- 2 Calls arrive at a help desk according to a Poisson process with rate λ = 3 calls per hour. What is the probability that the waiting time until the next call is more than 20 minutes?
- 3 A bus stop is sometimes modeled with a Poisson process for bus arrivals. Explain why the memoryless property may fail if buses are actually scheduled every 10 minutes.