← back to statistics

Distributions

OpenIntro Statistics · Ch. 4 · openintro.org/book/os

A distribution describes how values are spread across possible outcomes. The normal distribution is the workhorse of statistics: most sample means converge to it. Other distributions (binomial, Poisson, geometric) model counting, rare events, and waiting times.

The normal distribution and Z-scores

The normal distribution is symmetric, bell-shaped, and fully described by its mean (μ) and standard deviation (σ). A Z-score standardizes any value: Z = (x - μ) / σ. A Z-score of 2 means the value is 2 standard deviations above the mean.

Z = -1 Z = 0 Z = 1 68% 16% 16% 68-95-99.7 rule: 68% within 1 SD, 95% within 2, 99.7% within 3
Scheme

Binomial distribution

The binomial distribution counts successes in n independent trials, each with probability p. P(X = k) = C(n,k) * p^k * (1-p)^(n-k). Mean = np, standard deviation = sqrt(np(1-p)).

Scheme

Poisson and geometric

The Poisson distribution models rare events per unit time: P(X = k) = e^(-λ) * λ^k / k!. The geometric distribution models waiting time until first success: P(X = k) = (1-p)^(k-1) * p.

Scheme
Neighbors

Related chapters

Foundations (Wikipedia)

Translation notes

OpenIntro devotes significant space to normal probability tables and calculator use. We compute Z-scores and probabilities directly. The 68-95-99.7 rule (empirical rule) is the key heuristic for the normal distribution. For the Central Limit Theorem that justifies the normal's dominance, see Grinstead Ch. 9.

Want the full treatment? Read OpenIntro Statistics, Ch. 4.