Difficulty: Medium
Correct Answer: 36
Explanation:
Introduction / Context:We count placements of three distinct passengers (M1, M2, W) into five seats where one is ladies-only (L). Men cannot occupy L. The woman can sit on L or any normal seat, and if she avoids L, that seat remains empty. Use clean casework by whether W uses L.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Case 1: W→L (1 way). M1,M2 on 4 normal seats: P(4,2) = 4*3 = 12Case 2: W on a normal seat: 4 choices; then M1,M2 on remaining 3 normal seats: P(3,2) = 6 → 4*6 = 24Total = 12 + 24 = 36Verification / Alternative check:Counting by first selecting seats then permuting people yields the same result; constraints force L to be taken by W or left empty.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:36
Discussion & Comments