Random events on a timeline
Emails, phone calls, and earthquakes all arrive at unpredictable times. The Poisson process is the mathematical model for events scattered along a timeline.
What is a Poisson process?
A Poisson process with rate is a counting process where:
- (start at zero)
- Independent increments: counts in non-overlapping intervals are independent
- Stationary increments: for any
- Events happen one at a time (no simultaneous arrivals)
The number of events in a time interval of length follows a Poisson distribution with parameter .
We already met the Poisson distribution in the discrete chapter. Now we see where it naturally arises — as the counting distribution for a continuous-time process.
Watch events arrive
Click to start and watch random events appear on a timeline. The count follows a Poisson distribution:
Inter-arrival times
The time between consecutive events in a Poisson process with rate follows an Exponential() distribution:
This connects three things we've already learned: the Poisson distribution gives the number of events in a fixed time, the Exponential distribution gives the time between events, and the memoryless property means the process restarts after each event.
Simulate Poisson process events and measure the gaps between them — watch the histogram match the Exponential PDF:
Properties
| Property | Formula |
|---|---|
| Count in | |
| Expected count | |
| Inter-arrival time | |
| -th arrival time | |
| Merging | Rate + Rate = Rate |
| Splitting with prob | Rate → Rate |
Practice problems
Summary
| Concept | Key Idea |
|---|---|
| Poisson process | Counting random events with rate |
| Count distribution | |
| Inter-arrivals | , independent |
| Memoryless | Waiting time doesn't depend on how long you've waited |
The Poisson process is the continuous-time analog of the Bernoulli process. Bernoulli = coin flips at discrete times, Poisson = events at continuous times.
What's next
We'll see what happens when Poisson processes combine or split in superposition and thinning.