Modeling rare events: count data, rate parameter λ, and relationship to binomial.
Overview
The Poisson distribution models the number of events occurring in a fixed interval of time or space, when events happen at a constant average rate and independently.
Conditions
Events occur independently
Events occur at a constant average rate
Two events cannot occur at exactly the same instant
The probability of an event is proportional to the interval length
Parameter
λ (lambda): The average number of events per interval
Probability Mass Function
P(X=k)=k!e−λ⋅λk
Where:
k=0,1,2,3,… (any non-negative integer)
e≈2.71828 (Euler's number)
Key Formulas
Mean
μ=E(X)=λ
Variance
σ2=Var(X)=λ
Note: Mean equals variance—a unique property of Poisson!
Standard Deviation
σ=λ
Notation
X∼Poisson(λ)
or
X∼Pois(λ)
Changing the Interval
If λ is the rate per unit, then for t units:
X∼Poisson(λt)
Applications
Context
λ represents
Customer arrivals
Avg arrivals per hour
Website visits
Avg visits per minute
Typos per page
Avg errors per page
Accidents
Avg accidents per month
Calls to call center
Avg calls per hour
Poisson as Binomial Limit
When n is large and p is small, with λ=np:
Binomial(n,p)≈Poisson(np)
Rule of thumb: Use when n≥20 and p≤0.05
Examples
Example 1: Basic Calculation
A call center receives an average of 4 calls per hour. Find P(exactly 6 calls in an hour).
λ=4,k=6P(X=6)=6!e−4⋅46=7200.0183×4096=0.1042
Example 2: Changing Time Interval
If λ=4 calls per hour, find P(2 or fewer calls in 30 minutes).