Binomial Distribution
Coin Flip Experiment
You flip a fair coin 5 times. What is the probability of getting exactly 3 heads?
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!(5-3)!} = \frac{5!}{3!2!} = \frac{120}{6 \times 2} = 10$ = 10 ways
Calculate success probability: $p^k = 0.5^3 = 0.125$ = 0.125
Calculate failure probability: $(1-p)^{n-k} = 0.5^2 = 0.25$ = 0.25
Multiply all parts: $P(X=3) = 10 \times 0.125 \times 0.25 = 0.3125$ = 0.3125 or 31.25%
Answer: The probability of getting exactly 3 heads in 5 flips is $0.3125$ or $31.25\%$
Quality Control
A factory produces items with a 10% defect rate. In a sample of 8 items, what is the probability that exactly 2 are defective?
Identify the parameters: $n = 8$ (items), $k = 2$ (defective), $p = 0.10$ (defect rate) = n=8, k=2, p=0.10
Calculate the combination: $\binom{8}{2} = \frac{8!}{2!6!} = \frac{8 \times 7}{2 \times 1} = 28$ = 28 ways
Calculate success probability: $p^k = 0.10^2 = 0.01$ = 0.01
Calculate failure probability: $(1-p)^{n-k} = 0.90^6 = 0.531441$ = 0.531441
Multiply all parts: $P(X=2) = 28 \times 0.01 \times 0.531441 = 0.1488$ = 0.1488 or 14.88%
Answer: The probability of exactly 2 defective items is approximately $0.149$ or $14.9\%$
Free Throw Probability
A basketball player has a 75% free throw success rate. If she takes 6 shots, what is the probability of making exactly 5?
Identify the parameters: $n = 6$ (shots), $k = 5$ (made), $p = 0.75$ (success rate) = n=6, k=5, p=0.75
Calculate the combination: $\binom{6}{5} = \frac{6!}{5!1!} = 6$ = 6 ways
Calculate success probability: $p^k = 0.75^5 = 0.2373$ = 0.2373
Calculate failure probability: $(1-p)^{n-k} = 0.25^1 = 0.25$ = 0.25
Multiply all parts: $P(X=5) = 6 \times 0.2373 \times 0.25 = 0.356$ = 0.356 or 35.6%
Answer: The probability of making exactly 5 out of 6 free throws is approximately $0.356$ or $35.6\%$
Mistake: Forgetting to include the combination $\binom{n}{k}$
Why: The combination counts HOW MANY WAYS to arrange $k$ successes among $n$ trials. Without it, you only calculate the probability of ONE specific arrangement.
Correct: Always use the full formula: $P(X=k) = \binom{n}{k} p^k (1-p)^{n-k}$
Mistake: Using $p$ for both success AND failure terms
Why: The failure probability is $1-p$, not $p$. If success is 0.3, failure must be 0.7.
Correct: Use $p^k$ for successes and $(1-p)^{n-k}$ for failures.
Mistake: Confusing 'at least' with 'exactly'
Why: 'Exactly 3' means $P(X=3)$, but 'at least 3' means $P(X \geq 3) = P(X=3) + P(X=4) + ...$
Correct: For 'at least', add up probabilities for all values from that number to $n$. Or use complement: $P(X \geq k) = 1 - P(X < k)$
Medical Trials
Pharmaceutical companies use binomial distribution to analyze drug effectiveness in clinical trials.
If a new medication has a 75% success rate, the probability that exactly 8 out of 10 patients improve is calculated using the binomial formula.
Sports Analytics
Coaches and analysts use binomial probability to predict game outcomes and player performance.
If a basketball player has a 70% free throw rate, binomial distribution calculates the probability of making a specific number of shots.
The binomial distribution models $k$ successes in $n$ independent trials with success probability $p$
Formula: $P(X = k) = \binom{n}{k} p^k (1-p)^{n-k}$
The combination $\binom{n}{k}$ counts the number of ways to arrange the successes
Conditions: fixed $n$, independent trials, two outcomes, constant $p$
Mean: $\mu = np$ and Standard Deviation: $\sigma = \sqrt{np(1-p)}$
Q: When should I use the binomial distribution?
A: Use it when you have a fixed number of independent trials, each with only two outcomes (success/failure), and the probability of success remains constant for each trial.
Q: What's the difference between binomial and normal distribution?
A: Binomial is for discrete counts (whole numbers of successes), while normal is for continuous data. However, when $n$ is large and $p$ is not too extreme, binomial can be approximated by normal.
Q: How do I calculate 'at least k successes'?
A: Either add up $P(X=k) + P(X=k+1) + ... + P(X=n)$, or use the complement: $P(X \geq k) = 1 - P(X < k) = 1 - [P(X=0) + P(X=1) + ... + P(X=k-1)]$.
Binomial Distribution
1 / 11
Binomial Distribution
Learn how to calculate probabilities for repeated independent trials with two outcomes.