The Binomial Distribution
Fixed trials, two outcomes, constant probability. How C(n, x) p^x q^(n-x) gives the chance of exactly x successes, why the coefficient counts the possible orders, and what the expected value np tells you.
Fixed trials, two outcomes, constant probability. How C(n, x) p^x q^(n-x) gives the chance of exactly x successes, why the coefficient counts the possible orders, and what the expected value np tells you.
A binomial experiment repeats the same trial a fixed number of times, where each trial has only two outcomes — success or failure. The binomial distribution then gives the probability of getting exactly successes.
Typical examples: tossing a coin times
; inspecting
items on a production line
; answering
true/false questions
.
The probability of exactly successes in
trials is:
Exactly 3 heads, with ,
,
:
A die rolled 10 times — exactly two sixes
A production line (5% defective) — inspect 20, exactly one defective
On average, a binomial experiment gives successes. For the coin above,
— which is exactly where the distribution peaks.
| Part | Symbol | Meaning |
|---|---|---|
| Combinations | C(n, x) | ways to place x successes in n trials |
| Success probability | pˣ | x successes occurring |
| Failure probability | qⁿ⁻ˣ | (n − x) failures occurring |
| Expected value | μ = np | average number of successes |