counting processes
Poisson Process
You should know: probability measure, exponential distribution, markov chains
Overview
The Poisson process is the canonical model for counting random events occurring over time. A homogeneous Poisson process with rate λ > 0 is a counting process N(t) such that: N(0) = 0, it has independent and stationary increments, and N(t) - N(s) ~ Poisson(λ(t-s)) for t > s. Equivalently, the inter-arrival times between events are i.i.d. Exponential(λ) random variables. The Poisson process arises naturally in queuing, reliability, insurance, and physics as the unique counting process with stationary independent increments.
Intuition
Think of cars passing a highway sensor. If arrivals are rare relative to any interval, memoryless (how long you have waited tells you nothing about when the next car arrives), and can't pile up simultaneously, then the count over any window is Poisson distributed. The exponential distribution arises automatically: given the memoryless property and continuity, the only waiting-time distribution is the exponential. Superimposing two independent Poisson streams (rates λ₁ and λ₂) simply produces a Poisson stream at rate λ₁ + λ₂ — a powerful thinning/superposition calculus.
Formal Definition
A counting process {N(t), t ≥ 0} is a Poisson process with rate λ > 0 if it satisfies the following axioms.
Notation
| Notation | Meaning |
|---|---|
| Number of events in [0, t] | |
| Rate (intensity) of the process, events per unit time | |
| k-th inter-arrival time, i.i.d. Exp(λ) | |
| Time of n-th arrival; S_n = T₁ + ... + Tₙ ~ Gamma(n, λ) |
Theorems
Worked Examples
- 1
In 30 minutes = 0.5 hours, the expected number of calls is λt = 5 × 0.5 = 2.5.
- 2
N(0.5) ~ Poisson(2.5), so P(N = 3) = e^{-2.5} · 2.5³ / 3!.
✓ Answer
The probability is approximately 0.214.
Practice Problems
Buses arrive at rate 3 per hour and taxis at rate 2 per hour, independently. What is the rate of the combined arrival process? What fraction of arrivals are buses?
For a Poisson process with rate λ, derive E[S_n] and Var(S_n) where S_n is the time of the n-th arrival.
Common Mistakes
Using the homogeneous Poisson formula for a non-homogeneous process
For a non-homogeneous process with rate lambda(t), the expected count in [s,t] is the integral of lambda(u) from s to t, not lambda*(t-s).
Forgetting the memoryless property of exponential inter-arrivals
P(T > s+t | T > s) = P(T > t): having waited s seconds tells you nothing about when the next event will arrive.
Confusing Poisson counts with exponential inter-arrival times
N(t) ~ Poisson(lambda*t) counts events; inter-arrival times T_k ~ Exp(lambda) measure gaps. They describe the same process but are different random variables.
Quiz
Historical Background
Siméon Denis Poisson introduced the Poisson distribution in 1837 in his work on the probability of judicial errors. The Poisson process as a continuous-time model was formalized by Agner Krarup Erlang in the 1900s through his work on telephone traffic engineering. The connection to exponential inter-arrivals and the axiomatic characterization were developed in the early 20th century, and the process became a cornerstone of queuing theory, reliability theory, and stochastic processes.
- 1837
Poisson introduces the Poisson distribution in a study of judicial errors
Siméon Denis Poisson
- 1909
Erlang uses the Poisson process to model telephone traffic
Agner Krarup Erlang
- 1940s
Axiomatic characterization of the Poisson process developed; connection to exponential inter-arrivals established
Summary
- A Poisson process with rate λ has N(t) ~ Poisson(λt) and independent, stationary increments.
- Inter-arrival times are i.i.d. Exponential(λ), the unique continuous memoryless distribution.
- Superposition of independent Poisson processes with rates λ₁ and λ₂ yields a Poisson process with rate λ₁ + λ₂; thinning at probability p yields rate pλ.
- Conditionally on N(t) = n, the arrival times are the order statistics of n i.i.d. Uniform[0, t] random variables.
References
- BookRoss, S. — Introduction to Probability Models, Chapter 5
- BookDurrett, R. — Probability: Theory and Examples, 4th ed.
- WebsiteWikipedia — Poisson process
Mathematics