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
Memory hook. A binomial is n independent Bernoullis added together, so both the mean and the variance are n times the Bernoulli's: n·p and n·p(1−p). Variance is always SMALLER than the mean.

Where the moments come from

  1. Write where each is Bernoulli() and the are independent.
  2. and , since .
  3. Expectation is always additive: .
  4. Variance is additive because the trials are INDEPENDENT: .
  5. 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.

  1. This is - a fixed number of independent trials with a common success probability.
  2. .
  3. , , and .
  4. .

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.