The Binomial Distribution
What You’ll Learn
Section titled “What You’ll Learn”In this lesson you’ll learn the four conditions that make a situation binomial, the binomial probability formula and where it comes from, how to compute “at least” and “at most” probabilities, and the mean and standard deviation of a binomial variable.
The Concept
Section titled “The Concept”The four conditions
Section titled “The four conditions”A situation is binomial when all four of these hold. The mnemonic is BINS:
- Binary - each trial has two outcomes, labeled success and failure.
- Independent - trials don’t influence each other.
- Number fixed - you decide in advance.
- Same probability - is identical on every trial.
“Success” carries no positive meaning. It just labels the outcome you’re counting, so a defect can be a success.
If any condition fails, this isn’t binomial. Drawing cards without replacement violates independence and constant . Flipping until you get heads violates fixed .
The formula
Section titled “The formula”If counts successes in trials with success probability :
Every piece has a job:
- - the probability of successes.
- - the probability of the remaining failures.
- - how many different orders produce successes.
That last factor is why the binomial coefficient from combinatorics shows up. Getting 2 heads in 3 flips can happen as HHT, HTH, or THH, and counts exactly those arrangements. Without it you’d only be computing the probability of one specific sequence.
Failure probability is often written , giving the compact form .
The shape
Section titled “The shape”The distribution’s shape depends on :
- - symmetric.
- - right-skewed, since successes are scarce.
- - left-skewed.
As grows, the binomial becomes increasingly bell-shaped even when isn’t 0.5. That’s a preview of the Central Limit Theorem, and it’s why the normal distribution can approximate the binomial for large .
Mean and standard deviation
Section titled “Mean and standard deviation”The binomial has pleasantly simple formulas:
The mean is intuitive: 100 flips at gives an expected 50 heads. You could derive it from the general expected value definition, but there’s no need.
”At least” and “at most”
Section titled “”At least” and “at most””Most real questions ask about ranges, not exact counts.
- Exactly : one term.
- At most :
- At least :
For “at least,” the complement is usually far less work:
Watch the boundaries carefully. “More than 3” means , while “at least 3” means . That off-by-one is the most common error in binomial problems.
Worked Examples
Section titled “Worked Examples”Example 1: Exact probability.
A fair coin is flipped 6 times. Find the probability of exactly 4 heads.
Solution. , , .
Since , every specific sequence has probability , so the answer is just the count of favorable arrangements over 64.
Example 2: Unequal probability.
A basketball player makes 70% of free throws. She takes 5. Find the probability she makes exactly 3.
Solution. , , .
About 30.9%.
Example 3: At least one.
A machine produces parts with a 4% defect rate. In a sample of 20, find the probability of at least one defect.
Solution. Complement.
About 55.8%. Worth noticing: with only a 4% defect rate, a sample of 20 still fails more often than not.
Example 4: At most.
Using Example 2’s player (70% free throws, 5 attempts), find the probability she makes at most 1.
Solution.
About 3.1%. A good shooter rarely has a game that poor, which is what makes such a result notable if it happens.
Example 5: Mean and standard deviation.
A quiz has 40 multiple-choice questions with 4 options each. A student guesses every one. Find the mean and standard deviation of the number correct.
Solution. , .
A guesser averages 10 correct with a typical deviation of under 3. Scoring 20 would be more than three standard deviations above the mean, which is strong evidence they weren’t guessing.
Example 6: Is it binomial?
Which of these are binomial?
- Rolling a die 10 times, counting sixes.
- Drawing 5 cards from a deck without replacement, counting hearts.
- Flipping a coin until the first heads, counting flips.
- Surveying 200 randomly chosen voters, counting those who approve.
Solution.
- Yes. Binary (six or not), independent, fixed, constant.
- No. Without replacement breaks independence and changes each draw. This needs the hypergeometric distribution.
- No. isn’t fixed; it’s the random quantity. This is the geometric distribution.
- Yes, effectively. Technically sampling without replacement, but the population is so much larger than 200 that barely shifts. The standard rule of thumb is that this approximation is fine when the sample is under about 10% of the population.
Real-World Applications
Section titled “Real-World Applications”Quality control is the textbook use. A factory samples items and computes how likely the observed defect count is under an assumed rate. If the result is very improbable, the process gets investigated. This is hypothesis testing in miniature.
Clinical trials count patients responding to treatment out of enrolled. The binomial gives the probability of the observed response count under the assumption the drug does nothing, which is exactly a p-value.
A/B testing counts conversions out of visitors. Every significance calculation on a conversion-rate test rests on binomial (or normal-approximated binomial) probabilities.
Polling counts supporters out of respondents, and the margin of error comes from converted to a proportion. That formula is why sample size drives precision.
Genetics uses it for inheritance. With two carrier parents, each child independently has a 25% chance of inheriting a recessive condition, so the number affected among children is binomial.
In reliability engineering, the probability that at least of redundant components survive is a binomial “at least” calculation, subject to the independence caveat from the probability rules lesson.
Retrying will remove your ✅ checkmark until you pass again.