Difficulty: Easy
Correct Answer: 7
Explanation:
Introduction / Context:This is combinations with an exclusion constraint: count all 3-person groups, then subtract the forbidden ones that include both C and D together.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Total = C(5,3) = 10Forbidden = choose 1 from {A, B, E} with {C, D} fixed → 3Allowed = 10 − 3 = 7Verification / Alternative check:List groups and strike those containing both C and D; seven remain. This matches the calculation.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:7
Discussion & Comments