Probability DistributionsTopic #14 of 33

Poisson Distribution

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 (lambda): The average number of events per interval

Probability Mass Function

P(X=k)=eλλkk!P(X = k) = \frac{e^{-\lambda} \cdot \lambda^k}{k!}

Where:

  • k=0,1,2,3,k = 0, 1, 2, 3, \ldots (any non-negative integer)
  • e2.71828e \approx 2.71828 (Euler's number)

Key Formulas

Mean

μ=E(X)=λ\mu = E(X) = \lambda

Variance

σ2=Var(X)=λ\sigma^2 = \text{Var}(X) = \lambda

Note: Mean equals variance—a unique property of Poisson!

Standard Deviation

σ=λ\sigma = \sqrt{\lambda}

Notation

XPoisson(λ)X \sim \text{Poisson}(\lambda)

or

XPois(λ)X \sim \text{Pois}(\lambda)

Changing the Interval

If λ\lambda is the rate per unit, then for tt units:

XPoisson(λt)X \sim \text{Poisson}(\lambda t)

Applications

Contextλ\lambda represents
Customer arrivalsAvg arrivals per hour
Website visitsAvg visits per minute
Typos per pageAvg errors per page
AccidentsAvg accidents per month
Calls to call centerAvg calls per hour

Poisson as Binomial Limit

When nn is large and pp is small, with λ=np\lambda = np:

Binomial(n,p)Poisson(np)\text{Binomial}(n, p) \approx \text{Poisson}(np)

Rule of thumb: Use when n20n \geq 20 and p0.05p \leq 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)P(\text{exactly 6 calls in an hour}).

λ=4,k=6\lambda = 4, \quad k = 6 P(X=6)=e4466!=0.0183×4096720=0.1042P(X = 6) = \frac{e^{-4} \cdot 4^6}{6!} = \frac{0.0183 \times 4096}{720} = 0.1042

Example 2: Changing Time Interval

If λ=4\lambda = 4 calls per hour, find P(2 or fewer calls in 30 minutes)P(\text{2 or fewer calls in 30 minutes}).

For 30 min: λ=4×0.5=2\lambda = 4 \times 0.5 = 2

P(X2)=P(0)+P(1)+P(2)P(X \leq 2) = P(0) + P(1) + P(2) P(0)=e2200!=0.1353P(0) = \frac{e^{-2} \cdot 2^0}{0!} = 0.1353 P(1)=e2211!=0.2707P(1) = \frac{e^{-2} \cdot 2^1}{1!} = 0.2707 P(2)=e2222!=0.2707P(2) = \frac{e^{-2} \cdot 2^2}{2!} = 0.2707 P(X2)=0.1353+0.2707+0.2707=0.6767P(X \leq 2) = 0.1353 + 0.2707 + 0.2707 = 0.6767

Example 3: At Least One Event

A website averages 3 errors per day. P(at least one error)P(\text{at least one error})?

P(X1)=1P(X=0)=1e3300!=1e3=10.0498=0.9502P(X \geq 1) = 1 - P(X = 0) = 1 - \frac{e^{-3} \cdot 3^0}{0!} = 1 - e^{-3} = 1 - 0.0498 = 0.9502

Example 4: Rare Events (Binomial → Poisson)

A large batch of 1000 items has 0.5% defective. P(exactly 3 defective)P(\text{exactly 3 defective})?

n=1000,p=0.005,λ=np=5n = 1000, \quad p = 0.005, \quad \lambda = np = 5 P(X=3)=e5533!=0.00674×1256=0.1404P(X = 3) = \frac{e^{-5} \cdot 5^3}{3!} = \frac{0.00674 \times 125}{6} = 0.1404

Poisson Table Values

Common P(X=k)P(X = k) for selected λ\lambda:

kkλ=1\lambda=1λ=2\lambda=2λ=3\lambda=3λ=5\lambda=5
00.3680.1350.0500.007
10.3680.2710.1490.034
20.1840.2710.2240.084
30.0610.1800.2240.140
40.0150.0900.1680.175
50.0030.0360.1010.175

Properties

  • Mode λ\approx \lambda (exactly λ\lambda if λ\lambda is integer, λ\lfloor\lambda\rfloor otherwise)
  • Skewness =1/λ= 1/\sqrt{\lambda} (right-skewed, approaches symmetric as λ\lambda increases)
  • Sum of independent Poisson: Pois(λ1)+Pois(λ2)=Pois(λ1+λ2)\text{Pois}(\lambda_1) + \text{Pois}(\lambda_2) = \text{Pois}(\lambda_1 + \lambda_2)