Difficulty: Medium
Correct Answer: 9 (10!)
Explanation:
Introduction / Context:
Circular permutations differ from linear ones because rotations are indistinguishable. This problem asks for the number of round-table arrangements of 12 people with a specific adjacency restriction on two identified persons.
Given Data / Assumptions:
Concept / Approach:
Use “Total − Restricted.” First compute all circular arrangements without restrictions, then subtract the arrangements where the two specified people sit together as a block. For circular arrangements of n distinct people, the count is (n − 1)!.
Step-by-Step Solution:
Verification / Alternative check:
Anchor one person to eliminate rotation; counting linearly then adjusting leads to the same 9 * 10! figure.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting the factor 2 for the pair’s internal order, or using 12! instead of 11! for circular arrangements.
Final Answer:
9 (10!)
Discussion & Comments