Distributions and Statistical Models
Calculate the probability of a specific number of successes in a fixed number of independent Bernoulli trials.
Explore real-world scenarios to understand how the binomial distribution is applied.
What is the probability of getting exactly 7 heads in 10 coin flips?
n: 10, p: 0.5, k: 7
A factory produces light bulbs with a 5% defect rate. What is the probability that in a sample of 20 bulbs, exactly 2 are defective?
n: 20, p: 0.05, k: 2
A new drug is effective 80% of the time. If it's given to 50 patients, what is the probability that it's effective for at least 45 of them?
n: 50, p: 0.8, k: 45
A player makes 75% of their free throws. What is the probability they make at most 12 out of 15 attempts?
n: 15, p: 0.75, k: 12
np
and n(1-p)
are both greater than 5 (a common rule of thumb), the normal distribution can be used as an accurate and simpler approximation.