The table below collects the full anatomy of the binomial distribution into a single reference card — its parameters and support, the PMF and CDF, the mean and variance formulas, mode and median behavior, the Bernoulli special case, the Poisson approximation for rare events, and a canonical coin-flipping example.
| Aspect |
Formula / statement |
Note / example |
| Parameters |
n (number of trials, positive integer); p ∈ [0, 1] (success probability per trial) |
trials are independent; p is constant across trials |
| Support |
k ∈ {0, 1, 2, ..., n} |
finite — exactly n + 1 possible success counts |
| PMF |
P(X = k) = C(n, k) · pk · (1 − p)n − k |
ways to arrange k successes × probability of one such sequence; sums to 1 by the binomial theorem |
| CDF |
F(k) = ∑i = 0k C(n, i) · pi · (1 − p)n − i |
step function on integers; no simple closed form |
| Expected value |
E[X] = n · p |
sum of n Bernoulli means by linearity |
| Variance |
Var(X) = n · p · (1 − p); σ = √(n · p · (1 − p)) |
maximized at p = 0.5; shrinks as p approaches 0 or 1 |
| Mode and median |
mode = ⌊(n + 1) p⌋ (or two adjacent modes when (n + 1) p is an integer); median within 1 of np |
symmetric when p = 0.5: mode = median = mean |
| Special case |
Bin(1, p) = Bernoulli(p) |
n = 1 reduces to a single Bernoulli trial |
| Poisson approximation |
Bin(n, p) ≈ Poisson(np) when n is large and p is small |
law of rare events; rule of thumb n > 20, p < 0.05 |
| Canonical example |
flipping a fair coin 10 times: n = 10, p = 0.5 |
E[X] = 5, Var(X) = 2.5, σ ≈ 1.58 |