The Poisson Process
Why the Poisson Process?
In Chapter 17 we modeled systems that evolve at discrete time steps. Many real systems — packet arrivals at a router, call arrivals at a base station, photon detections in an optical receiver — evolve in continuous time, with events occurring at random instants. The simplest and most fundamental model for such random arrivals is the Poisson process.
What makes the Poisson process so central is that it arises from minimal assumptions: events occur one at a time, the rate of occurrence is constant, and the process has no memory. These three properties alone determine the entire probabilistic structure. The Poisson process is to continuous-time stochastic modeling what the Bernoulli process is to discrete time.
Definition: Counting Process
Counting Process
A counting process is a stochastic process taking values in with:
- .
- for (non-decreasing).
- For , the increment counts the number of events in the interval .
The value is a right-continuous step function that jumps by 1 at each event time. The inter-event times (where is the -th event time) fully determine the sample path.
Definition: Poisson Process
Poisson Process
A counting process is a Poisson process with rate if:
- Independent increments: For any , the increments are mutually independent.
- Stationary increments: The distribution of depends only on , not on .
- Orderliness: and as .
Equivalently, for all .
The three defining properties capture: (1) what happens in non-overlapping intervals is independent, (2) the statistics are time-invariant, and (3) events arrive one at a time at a well-defined rate. The equivalence with the Poisson distribution is the content of the next theorem.
Theorem: Distribution of Poisson Counting Process
If is a Poisson process with rate , then for all : In particular, and .
Divide into tiny intervals of length . Each interval has approximately a chance of containing one event and these intervals are independent. As , the Binomial distribution converges to Poisson — this is the classical Poisson limit theorem.
Set up the differential equation
Let . For small : using independent and stationary increments plus orderliness. Rearranging: .
Solve for $k=0$
Taking : with . Solution: .
Solve by induction on $k$
For general : . Assume . Multiply both sides by and let : . Integrating with : , so .
Theorem: Inter-Arrival Times Are Exponential
Let be the successive arrival times of a Poisson process with rate , and let (with ) be the inter-arrival times. Then are i.i.d. random variables: Conversely, if are i.i.d. , then the counting process is a Poisson process with rate .
The memoryless property of the exponential distribution is the continuous-time analog of the memoryless property of the geometric distribution. Just as the geometric inter-arrival times define a Bernoulli process, exponential inter-arrival times define a Poisson process.
Compute the distribution of $T_1$
. So .
Show independence and identical distribution
Given , the independent-increment property implies that the process is again a Poisson process with rate , independent of . Therefore is independent of and has the same distribution. By induction, all are i.i.d. .
Example: Packet Arrivals at a Router
Packets arrive at a router port according to a Poisson process with rate packets/second. Find: (a) The probability that exactly 3 packets arrive in a 10 ms interval. (b) The expected time until the 100th packet arrives. (c) The probability that no packets arrive in a 5 ms interval.
(a) Poisson probability
In seconds, .
(b) Sum of exponentials
The 100th arrival time is where .
(c) Zero arrivals
. .
Example: Superposition and Thinning
(a) Superposition: Two independent Poisson processes with rates and are merged. What is the resulting process? (b) Thinning: Each arrival of a Poisson process with rate is independently classified as type A with probability or type B with probability . What are the resulting sub-processes?
(a) Merged process
The superposition of independent Poisson processes is again Poisson with rate . This follows because the merged counting process inherits independent increments, stationary increments, and orderliness with the combined rate.
(b) Thinned sub-processes
The type-A arrivals form a Poisson process with rate and the type-B arrivals form an independent Poisson process with rate . Independence of the sub-processes follows from the independent-increment property and the independent classification of each arrival.
Poisson Process: Arrivals and Counting Process
Simulate a Poisson process: see the arrival times on a timeline, the staircase counting function , and the empirical inter-arrival distribution compared to .
Parameters
The Poisson Process: Arrivals, Counting, and Inter-Arrival Times
Quick Check
If is a Poisson process with rate events/second, what is ?
The increment . So .
Common Mistake: Poisson vs. Binomial: When the Approximation Breaks
Mistake:
Treating a Poisson model as exact when the number of potential sources is small and each source contributes events with non-negligible probability. For example, modeling 5 users each transmitting with probability 0.3 per slot as Poisson(1.5).
Correction:
The Poisson approximation to the Binomial is accurate when is large and is small, with moderate. For , the Binomial distribution differs noticeably from Poisson(1.5): vs. . Use the exact Binomial when is small.
Historical Note: Siméon-Denis Poisson and the Law of Small Numbers
19th centuryThe Poisson distribution first appeared in Siméon-Denis Poisson's 1837 treatise Recherches sur la probabilité des jugements en matière criminelle et en matière civile. Poisson derived it as the limit of the binomial distribution when the number of trials is large and the success probability is small. The name "law of small numbers" (later popularized by von Bortkiewicz, who applied it to Prussian cavalry deaths by horse kicks) captures the key insight: rare events in many trials follow a universal pattern. Today, the Poisson process is the default model for random arrivals in telecommunications, queueing theory, and particle physics.
Counting process
A non-decreasing integer-valued stochastic process with that counts the number of events occurring up to time .
Poisson process
A counting process with independent increments, stationary increments, and orderliness (at most one event per infinitesimal interval). Equivalently, for all .
Related: Counting process
Inter-arrival time
The time between the -th and -th events in a point process. For a Poisson process with rate , the inter-arrival times are i.i.d. .
Related: Poisson process
Key Takeaway
The Poisson process is completely characterized by a single parameter : arrivals are independent, the count in any interval of length is Poisson, and inter-arrival times are i.i.d. Exp. Superposition adds rates; thinning multiplies by the retention probability. This makes the Poisson process the universal building block for continuous-time traffic models.