probability distributions
Poisson Distribution
You should know: binomial distribution
Overview
The Poisson distribution models the number of events occurring in a fixed interval of time or space, given that events happen independently and at a constant average rate λ (lambda). It's used for counts like the number of customer arrivals per hour, typos per page, or radioactive decays per second. Unlike the binomial distribution, the Poisson has a single parameter λ, which equals both its mean and its variance. It arises as the limiting case of the binomial distribution when the number of trials n grows large and the success probability p shrinks small, with np held constant at λ.
Intuition
Think of splitting a time interval into many tiny sub-intervals, each so short that at most one event can plausibly occur in it. Each sub-interval is like a Bernoulli trial with a very small success probability, and there are a huge number of them — exactly the setup that produces a binomial distribution in the np → λ limit. The Poisson distribution is the mathematical shortcut for this limit, letting you skip tracking individual sub-intervals and work directly with the overall rate λ.
Formal Definition
If X counts the number of events in a fixed interval with average rate λ, X ~ Poisson(λ), with probability mass function:
Worked Examples
Apply the Poisson PMF with λ=3, k=2.
Numerically, e^{-3} ≈ 0.0498, so compute the value.
Answer: P(X = 2) ≈ 0.224.
Practice Problems
For X ~ Poisson(λ = 2), find P(X = 1).
For X ~ Poisson(λ = 5), find the mean and variance.
A factory averages 1 machine breakdown per week (λ = 1). Find the probability of at least 1 breakdown in a given week.
Quiz
Summary
- The Poisson distribution models counts of independent events occurring at a constant average rate λ over a fixed interval.
- Its PMF is P(X=k) = λᵏe⁻λ/k!, with mean and variance both equal to λ.
- It arises as the limit of the binomial distribution as n → ∞, p → 0, with np = λ held fixed.
Mathematics