The binomial distribution is one of the most fundamental discrete probability distributions in statistics. It models the number of successes in a fixed number of independent trials, where each trial has exactly two possible outcomes.
Think of it as answering: "If I repeat an experiment n times, what's the probability of getting exactly r successes?"
Imagine flipping a coin, taking a multiple-choice test, or checking products for defects. In each case, you have:
Click the coin to flip!
Flips: 0
Heads: 0
Success Rate: 0%
The formula multiplies three key elements:
Problem: A fair coin is tossed 8 times. What's the probability of getting exactly 5 heads?
Problem: A manufacturer knows that 4% of their products are defective. In a random sample of 15 products, what's the probability that exactly 2 are defective?
Scenario: A new drug has a 70% success rate. If tested on 50 patients:
Quality control, defect rates, batch testing, production line monitoring
Inheritance patterns, gene expression, mutation rates, breeding programs
Response rates, A/B testing, conversion rates, customer behavior
Signal transmission, packet loss, network reliability, error rates
Drug efficacy, diagnostic accuracy, treatment success, clinical trials
Test performance, pass rates, multiple choice scoring, student success
An e-commerce company tests two website designs. Version A converts 12% of visitors, Version B converts 15%. They test with 1000 visitors each.
Version A (n=1000, p=0.12):
Version B (n=1000, p=0.15):
When np โฅ 5 and n(1-p) โฅ 5, the binomial distribution can be approximated by a normal distribution.
Cumulative: Probability of r or fewer successes
Individual: Probability of exactly r successes
Problem: In 10 coin flips, what's the probability of getting 3 or fewer heads?
P(X โค 3) = P(X=0) + P(X=1) + P(X=2) + P(X=3)
This means there's about a 17% chance of getting 3 or fewer heads in 10 flips.