Difficulty: Medium
Correct Answer: 10/21
Explanation:
Introduction / Context:This is a standard hypergeometric probability: sampling without replacement from a finite population containing two types (blue and black). We compute the probability of drawing a specified composition.
Given Data / Assumptions:
Concept / Approach:Hypergeometric probability: P = [C(blue, needed_blue) * C(black, needed_black)] / C(total, draws). Here needed_blue = 2 and needed_black = 1. No order factor is needed because combinations already account for unordered draws.
Step-by-Step Solution:
Numerator = C(5,2) * C(4,1) = 10 * 4 = 40.Denominator = C(9,3) = 84.Probability = 40 / 84 = 10 / 21.Verification / Alternative check:Decimal check: 10/21 ≈ 0.4762. A quick simulation mindset (blue fraction ≈ 0.556) suggests the most likely triple roughly contains 2 blues, supporting plausibility of ≈0.48.
Why Other Options Are Wrong:2/5 (=0.4) and 1/3 (=0.333…) underestimate because two-blue outcomes are relatively frequent given more blues than blacks; 1/6 is far too small.
Common Pitfalls:Accidentally multiplying by permutations (overcounting), or using replacement formulas; also mixing numerator terms (e.g., C(4,2) instead of C(5,2)).
Final Answer:10/21
Discussion & Comments