← SciSim / Statistics
Poisson Distribution
📊 Tier: Standard Undergraduate
§1 Interactive Simulation
λ (rate)
3.00
E[X]=λ
3.00
Var[X]=λ
3.00
P(X=k)
P(X≤k)
Samples n
0
λ rate parameter 3
k query value 3
Speed 20/s
§2 The Idea, Step by Step
START — an everyday picture

Picture a quiet bakery. Some hours nobody walks in; other hours three or four customers turn up close together. You can't say exactly when the next one arrives, but you know the shop averages, say, about two customers an hour. The Poisson distribution is simply the math for "how many rare, scattered things happen in one fixed stretch of time or space?" — calls in a minute, raindrops on a tile, typos on a page.

BUILD — name the pieces

There is really only one knob: the average count, written $\lambda$ ("lambda") and called the rate. If a call centre averages $\lambda=3$ calls a minute, the chance of getting exactly $k$ calls in the next minute is $P(X=k)=\dfrac{e^{-\lambda}\lambda^{k}}{k!}$. Try one number with $\lambda=2$: the chance of a totally quiet hour is $P(0)=e^{-2}\approx 0.135$, about a 1-in-7 chance. The chance of exactly two is $e^{-2}\cdot\dfrac{2^{2}}{2!}=0.135\cdot 2\approx 0.271$.

DEEPEN — the precise form

For events that occur independently at a constant average rate, the count in an interval is exactly $\text{Poisson}(\lambda)$. Its signature property: the mean and the variance are both equal to $\lambda$, so the spread widens as the rate grows. Poisson is also the limit of the binomial — chop time into $n$ tiny slices, each with success probability $p=\lambda/n$, and as $n\to\infty$, $\text{Bin}(n,\lambda/n)\to\text{Poisson}(\lambda)$. In the sim above, the λ slider sets the rate (watch the $E[X]=\text{Var}[X]=\lambda$ cards move together), and the k slider picks which outcome you are asking about, so $P(X=k)$ and $P(X\le k)$ update live.

TRY THIS in the sim above

1. Set $\lambda$ small (around 0.5): the bars pile up near $k=0$ — rare events mean mostly zeros. 2. Slide $\lambda$ up toward 15: the distribution becomes broad and bell-shaped, showing how Poisson approaches a Normal for large $\lambda$. 3. Open the "vs Binomial" tab and watch the $\text{Bin}(n,\lambda/n)$ bars close in on the Poisson dots as $n$ climbs from 10 to 200.

§3 Mathematical Derivation

Poisson Distribution — Siméon Denis Poisson, 1837

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

$E[X]=\lambda,\quad\text{Var}(X)=\lambda$ (mean equals variance — unique property!)

Symbol Table

SymbolMeaningRangeInterpretation
$\lambda$Rate (events per unit)$(0,\infty)$Average number of events in the interval
$k$Observed count$\{0,1,2,...\}$Number of events in one interval
$e^{-\lambda}$Zero-event probability base$(0,1)$$P(X=0)=e^{-\lambda}$
STEP 1 — Binomial Limit Derivation

Divide interval into $n$ sub-intervals, each with $p=\lambda/n$ probability. As $n\to\infty$:

$$P(X=k)=\binom{n}{k}\left(\frac{\lambda}{n}\right)^k\left(1-\frac{\lambda}{n}\right)^{n-k}\to\frac{e^{-\lambda}\lambda^k}{k!}$$

using $\lim_{n\to\infty}(1-\lambda/n)^n=e^{-\lambda}$ and $\binom{n}{k}/n^k\to1/k!$.

STEP 2 — Mean and Variance

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

$\text{Var}(X)=E[X(X-1)]+E[X]-(E[X])^2=\lambda^2+\lambda-\lambda^2=\lambda$

STEP 3 — Memoryless Arrivals (Poisson Process)

If events arrive at rate $\lambda$ per unit time, independently, then in any interval of length $t$: $N(t)\sim\text{Poisson}(\lambda t)$. The inter-arrival times follow $\text{Exponential}(\lambda)$.

Worked Example

Problem: A hospital emergency room receives λ=4 patients per hour. Find P(exactly 2 patients in one hour) and P(at most 2).

$$P(X=2)=\frac{e^{-4}\cdot4^2}{2!}=\frac{0.01832\cdot16}{2}\approx\mathbf{0.1465}$$

$$P(X\le2)=e^{-4}(1+4+8)=0.01832\cdot13\approx\mathbf{0.2381}$$

Ross — A First Course in Probability, Ch. 4.7
DeGroot & Schervish — Probability and Statistics, Ch. 5.4
§4 FAQ
StatQuest — youtube.com/@statquest
§5 Misconceptions & Common Errors
❌ Misconception 1

"Poisson distribution can model any count data."
Poisson requires: (1) events are independent, (2) rate λ is constant, (3) two events cannot occur simultaneously. Overdispersion (Var > Mean) is common in real count data — use Negative Binomial instead. Examples where Poisson fails: customer arrivals that come in clusters, disease counts that vary by region (heterogeneous λ).
📖 Ross — Ch. 4.7

❌ Misconception 2

"Mean and variance being equal is just a coincidence."
E[X]=Var(X)=λ is a fundamental property of the Poisson distribution, not a coincidence. It follows from the MGF: M(t)=exp(λ(e^t-1)), giving E[X]=λ and Var(X)=λ. This equality is actually a diagnostic test — if sample mean ≠ sample variance significantly, Poisson may not fit (overdispersion or underdispersion).
📖 DeGroot & Schervish — Ch. 5.4

❌ Error 1

Using wrong λ when time period changes
✅ λ must match the time period. If λ=3/hour and you want P(X=k in 2 hours), use λ·t=6, not 3. Poisson scales linearly: N(t)~Poisson(λt).
🔍 Students use the hourly rate for a 2-hour window without multiplying by t.

❌ Error 2

Forgetting e^(-λ) factor in PMF computation
✅ P(X=k) = e^(-λ)·λ^k/k! — all three factors are essential. Common error: computing λ^k/k! without the e^(-λ) normalizing factor.
🔍 Memorizing just λ^k/k! without the exponential prefactor.

❌ Error 3

Using Poisson approximation to Binomial when p is not small
✅ Poisson approximates Bin(n,p) only when n≥20 and p≤0.05 (so λ=np≤5). For moderate p, use exact Binomial or Normal approximation.
🔍 Applying Poisson for n=30, p=0.3 (λ=9) where approximation is poor.

Ross — A First Course in Probability, Ch. 4.7
DeGroot & Schervish — Probability and Statistics, Ch. 5.4