Merging streams
Two lanes of traffic merge onto a highway. If each lane is a Poisson process, what's the result? Another Poisson process — with the rates added.
Superposition (merging)
If and are independent Poisson processes with rates and , then:
This generalizes: merging independent Poisson streams with rates gives rate .
Watch two streams of events merge into one:
Thinning (splitting)
If is a Poisson process with rate , and each event is independently "kept" with probability (or "discarded" with probability ), then:
- Kept events: Poisson process with rate
- Discarded events: Poisson process with rate
- The two are independent.
Thinning is the reverse of superposition. Superposition combines independent streams; thinning splits one stream into independent sub-streams.
See thinning in action — each event is independently kept or discarded, creating two independent Poisson sub-streams:
Real-world examples
| Scenario | Process | Operation |
|---|---|---|
| Email + Slack notifications | Two Poisson streams | Superposition → combined alert rate |
| Customers: 30% use coupon | One Poisson stream | Thinning → coupon users are Poisson |
| Earthquakes across regions | Regional processes | Superposition → global earthquakes |
| Quality control: 5% defect rate | Production line | Thinning → defects are Poisson |
| 911 calls: fire vs. medical | Combined calls | Thinning → each type is Poisson |
Conditional arrival location
Given that exactly events occur in , their arrival times are distributed as independent Uniform random variables (sorted).
Conditioning on the count, the arrival locations are uniformly distributed with no clustering or gaps.
Practice problems
Summary
| Concept | Key Formula |
|---|---|
| Superposition | Poisson processes merge to rate |
| Thinning | Keep with prob → rate |
| Independence | Kept and discarded streams are independent |
| Uniformity | Given events in , locations are Uniform |
Superposition and thinning make Poisson processes composable. You can build complex event models by merging and splitting simple Poisson streams, and the result is always Poisson.
Course complete
You've covered counting, distributions, limit theorems, Markov chains, MCMC, and Poisson processes — enough to read most applied probability and statistics.