Difficulty: Medium
Correct Answer: 756
Explanation:
Problem restatementSelect 5 people from 7 men and 6 women with at least 3 men on the committee.
Given data
Concept/ApproachCasework on the number of men: 3 men + 2 women; 4 men + 1 woman; 5 men + 0 women.
Step-by-Step calculationCase (3M,2W): 7C36C2 = 35 × 15 = 525Case (4M,1W): 7C46C1 = 35 × 6 = 210Case (5M,0W): 7C5 = 21Total ways = 525 + 210 + 21 = 756
Common pitfallsIncluding the (2M,3W) case (violates the constraint) or using permutations instead of combinations.
Final Answer756
Discussion & Comments