Binomial Probability
Flipping a Fair Coin
What is the probability of getting exactly 3 heads in 5 coin flips?
Identify the parameters: $n = 5$ flips, $k = 3$ heads, $p = 0.5$ (fair coin) = $n=5$, $k=3$, $p=0.5$
Calculate the combination: $\binom{5}{3} = \frac{5!}{3! \cdot 2!} = \frac{120}{6 \cdot 2} = 10$ = $\binom{5}{3} = 10$
Calculate $p^k$: $(0.5)^3 = 0.125$ = $p^3 = 0.125$
Calculate $(1-p)^{n-k}$: $(0.5)^{5-3} = (0.5)^2 = 0.25$ = $(1-p)^2 = 0.25$
Multiply all parts: $P(X=3) = 10 \times 0.125 \times 0.25 = 0.3125$ = $P = 0.3125$
Answer: The probability of getting exactly 3 heads in 5 flips is $0.3125$ or $31.25\%$
Multiple Choice Test
A multiple choice test has 10 questions with 4 options each. If you guess randomly, what's the probability of getting exactly 4 correct?
Identify the parameters: $n = 10$ questions, $k = 4$ correct, $p = \frac{1}{4} = 0.25$ = $n=10$, $k=4$, $p=0.25$
Calculate the combination: $\binom{10}{4} = \frac{10!}{4! \cdot 6!} = \frac{10 \times 9 \times 8 \times 7}{4 \times 3 \times 2 \times 1} = 210$ = $\binom{10}{4} = 210$
Calculate $p^k$: $(0.25)^4 = 0.00390625$ = $p^4 \approx 0.0039$
Calculate $(1-p)^{n-k}$: $(0.75)^6 \approx 0.1780$ = $(1-p)^6 \approx 0.178$
Multiply all parts: $P(X=4) = 210 \times 0.0039 \times 0.178 \approx 0.146$ = $P \approx 0.146$
Answer: The probability of guessing exactly 4 correct answers is approximately $0.146$ or $14.6\%$
Quality Control Inspection
A factory has a 2% defect rate. In a batch of 20 items, what's the probability that exactly 1 item is defective?
Identify the parameters: $n = 20$ items, $k = 1$ defect, $p = 0.02$ (defect rate) = $n=20$, $k=1$, $p=0.02$
Calculate the combination: $\binom{20}{1} = 20$ = $\binom{20}{1} = 20$
Calculate $p^k$: $(0.02)^1 = 0.02$ = $p^1 = 0.02$
Calculate $(1-p)^{n-k}$: $(0.98)^{19} \approx 0.6812$ = $(1-p)^{19} \approx 0.6812$
Multiply all parts: $P(X=1) = 20 \times 0.02 \times 0.6812 \approx 0.272$ = $P \approx 0.272$
Answer: The probability of finding exactly 1 defective item is approximately $0.272$ or $27.2\%$
Mistake: Forgetting to include the combination coefficient $\binom{n}{k}$
Why: The combination counts all the different ways to arrange successes among the trials. Without it, you only calculate one specific arrangement.
Correct: Always start with the combination: $P(X=k) = \binom{n}{k} \times p^k \times (1-p)^{n-k}$
Mistake: Using $p^n$ instead of $p^k$
Why: The exponent $k$ represents the number of successes, not the total number of trials.
Correct: Success probability is raised to the power of successes: $p^k$, and failure probability to the power of failures: $(1-p)^{n-k}$
Mistake: Applying binomial formula when trials are not independent
Why: Binomial probability requires that each trial's outcome doesn't affect others. Drawing cards without replacement, for example, changes probabilities.
Correct: Check independence: Does knowing one result change the probability of another? If yes, binomial doesn't apply.
Medical Trials
Researchers use binomial probability to evaluate treatment effectiveness.
If a drug has a 70% success rate, we can calculate the probability that exactly 8 out of 10 patients will respond positively.
Sports Analytics
Coaches use binomial probability to predict game outcomes and player performance.
A basketball player has a 75% free throw success rate. Binomial probability helps calculate the chance of making 9 out of 10 free throws.
Binomial probability applies when there are exactly two outcomes (success/failure) with fixed probability
The formula is $P(X=k) = \binom{n}{k} p^k (1-p)^{n-k}$
The combination $\binom{n}{k}$ counts all possible arrangements of successes
Trials must be independent for binomial probability to apply
Always check: fixed $n$, constant $p$, independent trials, two outcomes
Q: When should I use binomial probability versus other probability methods?
A: Use binomial probability when you have: (1) a fixed number of trials, (2) exactly two outcomes per trial, (3) constant probability of success, and (4) independent trials. If any condition fails, you need a different approach.
Q: What does the combination $\binom{n}{k}$ represent in the formula?
A: It counts how many different ways you can arrange $k$ successes among $n$ trials. For example, getting 2 heads in 3 flips can happen as HHT, HTH, or THH - that's $\binom{3}{2} = 3$ ways.
Q: What if I want the probability of 'at least' or 'at most' k successes?
A: For 'at least $k$', add up $P(X=k) + P(X=k+1) + ... + P(X=n)$. For 'at most $k$', add up $P(X=0) + P(X=1) + ... + P(X=k)$. Sometimes it's easier to use the complement.
Binomial Probability
1 / 11
Binomial Probability
Learn to calculate probabilities when an experiment has exactly two outcomes and is repeated multiple times.