Difficulty: Medium
Correct Answer: 480
Explanation:
Introduction / Context:To count arrangements where two specified people are not adjacent, use total permutations minus the arrangements where they are together (treated as a block) times their internal swaps.
Given Data / Assumptions:
Concept / Approach:
Step-by-Step Solution:
Total = 6! = 720Adjacent: block + 4 others → 5! arrangements, and (A,M) can be (A,M) or (M,A) → 2!, so 5!*2 = 120*2 = 240Not-adjacent = 720 − 240 = 480Verification / Alternative check:Gap method (place 4 others, count gaps for A and M) yields the same 480 result, confirming correctness.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:480
Discussion & Comments