Exam PDiscreteFree to read
Binomial distribution
The number of successes in a fixed number of independent trials that each succeed with the same probability.
Parameters and support
- number of independent trials —
- probability of success on one trial —
- Support
The formulas
- p(x)
- F(x)
No shorter closed form. For large n the normal approximation with a continuity correction is the intended exam route.
- Mean
- Variance
- MGF
Where the moments come from
- Write where each is Bernoulli() and the are independent.
- and , since .
- Expectation is always additive: .
- Variance is additive because the trials are INDEPENDENT: .
- The MGF is the product of identical Bernoulli MGFs .
Worked example
An insurer issues 10 independent one-year policies, each with a 0.15 probability of producing a claim. Find the probability that exactly 3 policies produce a claim.
- This is — a fixed number of independent trials with a common success probability.
- .
- , , and .
- .
Answer: 0.1298
The mean, variance, CDF and moment generating function above are re-derived numerically from this distribution’s own density on every test run — summed over the support for a discrete distribution, integrated by quadrature for a continuous one — and compared with the closed forms printed here. A typo on this page fails the build.
Traps
- Using the binomial when sampling is WITHOUT replacement from a small population — that is hypergeometric.
- Forgetting the continuity correction when the normal approximation is used on a discrete count.
- Reading 'at least 3' as P(X = 3) rather than 1 − P(X ≤ 2).
Related
Drill this: the Exam P question bank has original questions on this distribution, and the recall trainer builds its prompts from exactly the formulas above.