Skip to content
Part IA Easter Term

Poisson Distribution

Motivation

The Poisson distribution models the number of events occurring in a fixed interval (time, space, etc.) when events occur:

  • Independently of each other
  • At a constant average rate
  • One at a time

Examples:

  • Number of emails arriving in an hour
  • Number of typos per page
  • Number of earthquakes per year in a region
  • Number of customers entering a shop per hour

Preview: The Constant ee

The Poisson distribution uses the mathematical constant e2.71828e \approx 2.71828.

Key identities: e=n=01n!,ex=n=0xnn!e = \sum_{n=0}^{\infty} \frac{1}{n!}, \quad e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!}

eλ=limn(1λn)ne^{-\lambda} = \lim_{n \to \infty} \left(1 - \frac{\lambda}{n}\right)^n

Definition

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

P(X=k)=λkeλk!,k=0,1,2,P(X = k) = \frac{\lambda^k e^{-\lambda}}{k!}, \quad k = 0, 1, 2, \ldots

The parameter λ>0\lambda > 0 is both the mean and the variance.

Range

X{0,1,2,3,}X \in \{0, 1, 2, 3, \ldots\} (all non-negative integers)

Expectation

E[X]=k=0kλkeλk!=eλk=1λk(k1)!=eλλk=1λk1(k1)!=eλλeλ=λE[X] = \sum_{k=0}^{\infty} k \cdot \frac{\lambda^k e^{-\lambda}}{k!} = e^{-\lambda} \sum_{k=1}^{\infty} \frac{\lambda^k}{(k-1)!} = e^{-\lambda} \cdot \lambda \sum_{k=1}^{\infty} \frac{\lambda^{k-1}}{(k-1)!} = e^{-\lambda} \cdot \lambda \cdot e^{\lambda} = \lambda

Variance

By similar calculation: Var(X)=λ\text{Var}(X) = \lambda.

Not a coincidence: The mean and variance are equal for Poisson. This is a distinguishing feature.

Derivation from Binomial

Let YBin(n,p)Y \sim \text{Bin}(n, p). If nn \to \infty and p0p \to 0 with np=λnp = \lambda fixed:

Bin(n,p)Poisson(λ)\text{Bin}(n, p) \to \text{Poisson}(\lambda)

Intuition

Consider events occurring over time. Divide the interval into nn tiny subintervals:

  • Each subinterval has probability p=λ/np = \lambda/n of containing an event
  • Number of events in the whole interval is Bin(n,p)\text{Bin}(n, p)
  • As nn \to \infty, this approaches Poisson(λ)\text{Poisson}(\lambda)

Proof Sketch

P(Y=k)=(nk)pk(1p)nk=n(n1)(nk+1)k!(λn)k(1λn)nkP(Y = k) = \binom{n}{k} p^k (1-p)^{n-k} = \frac{n(n-1)\cdots(n-k+1)}{k!} \left(\frac{\lambda}{n}\right)^k \left(1 - \frac{\lambda}{n}\right)^{n-k}

As nn \to \infty:

  • n(n1)(nk+1)nk1\frac{n(n-1)\cdots(n-k+1)}{n^k} \to 1
  • (1λ/n)nkeλ(1 - \lambda/n)^{n-k} \to e^{-\lambda}

Result: P(X=k)=λkeλk!P(X = k) = \frac{\lambda^k e^{-\lambda}}{k!}

Example: Call Centre

A call centre receives an average of 5 calls per minute. What is the probability of exactly 3 calls in a minute?

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

P(X=3)=53e53!=125×0.0067460.14P(X = 3) = \frac{5^3 e^{-5}}{3!} = \frac{125 \times 0.00674}{6} \approx 0.14

What is the probability of at most 2 calls?

P(X2)=P(X=0)+P(X=1)+P(X=2)=e5(1+5+252)=18.5e50.125P(X \leq 2) = P(X = 0) + P(X = 1) + P(X = 2) = e^{-5}\left(1 + 5 + \frac{25}{2}\right) = 18.5 e^{-5} \approx 0.125

Example: Rare Events

If events are rare (small pp), but we have many trials (large nn), use Poisson as an approximation to Binomial.

Earthquakes: Suppose there’s a 0.001 chance of a major earthquake each year. In 1000 years, expected number is λ=1\lambda = 1.

P(at least one in 1000 years)=1P(X=0)=1e10.632P(\text{at least one in 1000 years}) = 1 - P(X = 0) = 1 - e^{-1} \approx 0.632

Poisson Process

A Poisson process with rate λ\lambda satisfies:

  1. N(0)=0N(0) = 0 (no events at time 0)
  2. Independent increments: counts in disjoint intervals are independent
  3. N(t)Poisson(λt)N(t) \sim \text{Poisson}(\lambda t): number of events in time interval of length tt

The inter-arrival times are exponentially distributed with parameter λ\lambda.

Additivity

If XPoisson(λ1)X \sim \text{Poisson}(\lambda_1) and YPoisson(λ2)Y \sim \text{Poisson}(\lambda_2) are independent:

X+YPoisson(λ1+λ2)X + Y \sim \text{Poisson}(\lambda_1 + \lambda_2)

Intuition: Merging two independent streams of events at rates λ1\lambda_1 and λ2\lambda_2 gives rate λ1+λ2\lambda_1 + \lambda_2.

Summary Table

PropertyValue
PMFP(X=k)=λkeλk!P(X = k) = \frac{\lambda^k e^{-\lambda}}{k!}
Range{0,1,2,}\{0, 1, 2, \ldots\}
Meanλ\lambda
Varianceλ\lambda
Relation to binomialLimit of Bin(n,p)\text{Bin}(n, p) as nn \to \infty, np=λnp = \lambda