Difficulty: Medium
Correct Answer: 64
Explanation:
Problem restatement
Count unordered draws of 3 balls from 9 distinct balls, with the condition that at least one is black.
Given data
Concept/Approach
Use complement counting: total 3-ball combinations minus those with zero black balls.
Step-by-step calculation
Total ways = C(9, 3) = 84 Zero-black ways = choose from 2W + 4R = 6 balls ⇒ C(6, 3) = 20 Required ways = 84 − 20 = 64
Verification/Alternative
Direct sum over cases with 1B, 2B, 3B yields the same count: C(3,1)C(6,2) + C(3,2)C(6,1) + C(3,3)C(6,0) = 3×15 + 3×6 + 1×1 = 45 + 18 + 1 = 64.
Common pitfalls
Final Answer
64
Discussion & Comments