📘 Section 3.8 — Poisson Distribution

Poisson Distribution

A count variable X that records the number of events in a fixed interval with constant average rate λ follows a Poisson(λ) distribution.

PMF (exactly x): P(X = x) = e−λ · λx / x!, x = 0, 1, 2, …
CDF (≤ x): P(X ≤ x) = Σk=0x e−λ · λk / k!
Mean: μ = λ   Variance: σ² = λ

🎯 When to use Poisson

Discrete vs Continuous: For Poisson (discrete), P(X=x) is a true probability. For continuous models, the PDF f(x) is a density and probabilities are areas under the curve.

🔁 Rate → λ Converter (how you get λ)

I observe events per and I want the count in a window of λ = –

Example: 1 per 10 minutes in a 60-minute window ⇒ λ = 6. Use the buttons above to try it.

🧮 Interactive Calculator — PMF • CDF • Right tail • Range

μ = 11.500, σ = 3.391

PMF — P(X = x)

CDF — P(X ≤ x)

Point P(X = k):
Left tail P(X ≤ k):
Right tail P(X ≥ k):
Range probability — compute P(a ≤ X ≤ b)

🔌 / ⚙️ / 🎓 Examples — know when Poisson fits

Electrical / Computer Engineering

Mechanical / Manufacturing

Student life

🔧 Worked example — Wire flaws

Flaws occur at 2.3 per mm. For a 5 mm piece, λ = 2.3 × 5 = 11.5.

🏥 Practice — ER arrivals

Average 3 patients/hour → λ = 3 per hour.

🧠 ER arrivals — Step-by-step Poisson math

Let X be the number of arrivals in one hour. If arrivals are independent and the average rate is constant, then X ~ Poisson(λ). Here the model uses λ arrivals per hour.

Mean = λ, Variance = λ
Exactly 5 in an hour:
P(X = 5) = e^{-λ} · λ^5 / 5!
         = [e^{-λ} = ] × [λ^5 / 5! = ]
         = 
Interpretation: probability of seeing exactly 5 arrivals in one hour.
At most 2 in an hour:
P(X ≤ 2) = ∑_{k=0}^2 e^{-λ} · λ^k / k!
         = e^{-λ} · (1 + λ + λ^2 / 2)
         = [sum = ] × [e^{-λ} = ]
         = 
Interpretation: probability of seeing 0, 1, or 2 arrivals in one hour.
What does P(·) mean? Discrete vs continuous (quick note)
Discrete: Poisson uses a PMF, so P(X=k) is an actual probability and the bars sum to 1.
Continuous: PDFs are densities; probabilities are areas (integrals). For a single point, P(X=a)=0.

📎 Excel Cheat Sheet (Poisson)