Statistics & Distributions
Poisson & Exponential
Overview
Poisson and Exponential are the same process viewed differently: Poisson counts events in a window; Exponential measures time between events. They're linked: if arrivals are Poisson(λ), inter-arrival times are Exp(λ). The memoryless property is the key feature: the expected future wait time doesn't depend on how long you've already waited. This makes Exponential the continuous analogue of Geometric.
How to Recognize
- →Counting rare events in fixed time/space: 'calls per hour', 'trades per second'
- →Waiting time between events: 'time until next trade', 'time until first failure'
- →Keyword: 'arrives at rate λ', 'Poisson process', 'on average λ per unit time'
Step-by-Step Approach
- 1.Poisson(λ): E[X]=Var[X]=λ. Use when counting rare independent events
- 2.Exponential(λ): waiting time between Poisson events. E[T]=1/λ, memoryless
- 3.Min of independent Exp(λᵢ): also Exponential with rate Σλᵢ
- 4.Large n, small p, np=λ → Binomial ≈ Poisson
Key Formulas
Worked Examples
Problem
Two types of events arrive: Type A at rate 3/hour, Type B at rate 2/hour. What is the expected time until ANY event? What is P(first event is Type A)?
Solution
Min of independent Exp(λ₁=3) and Exp(λ₂=2): also Exponential with rate λ₁+λ₂=5.
E[min] = 1/5 hour = 12 minutes.
P(first event is Type A) = λ_A/(λ_A+λ_B) = 3/5 = 60%.
This is the beautiful competing exponentials result: each 'race' to fire first, and the winner's probability equals its share of the total rate.
Answer
hr = 12 min. . Exponentials compete in proportion to their rates.
Common Mistakes
- !
Applying memoryless property without checking: only Exponential and Geometric are memoryless.
- !
Poisson mean = variance. If a problem says mean ≠ variance for count data, it's not Poisson.
- !
For min of exponentials: the rate ADDS, so the minimum is faster. E[min] = 1/(Σλᵢ) < any individual 1/λᵢ.
Practice Problems
Click "Show Answer" to revealEmails arrive at rate 10/hour. What is P(no email in the next 30 minutes)?
3 taxi companies: A arrives at rate 2/hr, B at 3/hr, C at 5/hr. You call all three simultaneously. What is E[waiting time] and P(company A arrives first)?