A factory produces lightbulbs, and 95% of them meet quality standards. If you randomly test 10 bulbs, what is the probability that exactly 8 bulbs pass the test?
Here:
- \(n = 10\), \(p = 0.95\), \(k = 8\).
\[
P(X = 8) = \binom{10}{8} (0.95)^8 (0.05)^2
\]
A basketball player has a 60% chance of making a free throw. If they take 5 shots, what is the probability of making at least 3 shots?
Here: - \(n = 5\), \(p = 0.6\).
\[
P(X \geq 3) = P(X = 3) + P(X = 4) + P(X = 5)
\]
In a clinical trial, a new drug has a 70% success rate. If 15 patients are treated, what is the probability that exactly 10 respond positively to the treatment?