← back to probability

Important Distributions

Grinstead & Snell · GFDL · PDF

A distribution is a recipe for randomness. The binomial counts successes, the Poisson counts rare events, the geometric waits for the first success, and the normal emerges when you add enough of anything together.

Binomial distribution

Flip a coin n times, each with success probability p. The number of successes k follows the binomial distribution: P(X = k) = C(n,k) p^k (1-p)^(n-k). Each bar in the diagram is one possible count of successes.

P(X = k) k (number of successes) Binomial(n=10, p=0.3) 0 1 2 3 4 5 6 7 8 9 10 mode = 3
Scheme

Poisson distribution

When n is large and p is small, the binomial approaches the Poisson distribution with parameter lambda = np. It counts rare events: typos per page, emails per hour, mutations per generation. P(X = k) = e^(-lambda) lambda^k / k!.

Scheme

Geometric distribution

How many trials until the first success? The geometric distribution answers this: P(X = k) = (1-p)^(k-1) p. It is memoryless. No matter how many failures you have seen, the probability of success on the next trial stays at p.

Scheme

Normal (Gaussian) distribution

The normal distribution is continuous. Its PDF is f(x) = (1 / sqrt(2 pi sigma^2)) exp(-(x - mu)^2 / (2 sigma^2)). It arises whenever many small independent effects add up, which is why it appears everywhere. The Central Limit Theorem (Ch 9) explains why.

Scheme

PMF vs PDF

Discrete distributions have a probability mass function (PMF): P(X = k) gives the probability of each exact value. Continuous distributions have a probability density function (PDF): f(x) gives density, and probability comes from integrating over an interval. The density at a single point is not a probability.

Scheme

Notation reference

Notation Scheme Meaning
B(n,p)(binomial-pmf n p k)Binomial: k successes in n trials
Pois(λ)(poisson-pmf lam k)Poisson: rare events at rate λ
Geom(p)(geometric-pmf p k)Geometric: trials until first success
N(μ,σ²)(normal-pdf mu sigma x)Normal: bell curve with mean μ, variance σ²
P(X = k)(pmf k)PMF: probability of exact value
f(x)(pdf x)PDF: probability density
Neighbors

Probability chapters

Foundations (Wikipedia)

Ready for the real thing? Read Grinstead & Snell, Chapter 5.

jkThe Handshake