Question
In how many ways can 5 people be seated around a circular table?
Solution — Step by Step
In a linear arrangement of 5 people (in a row), every position is distinct — leftmost, second, etc. So there are arrangements.
In a circular arrangement, there is no “first position.” The table looks the same if everyone shifts one seat clockwise. Two circular arrangements are considered identical if one can be obtained from the other by rotation.
To count distinct circular arrangements, fix one person in a seat (call them Person A). This eliminates the redundancy from rotations.
Now the remaining 4 people can be arranged in the remaining 4 seats in any order.
With Person A fixed, the remaining 4 people can be arranged in:
So the number of distinct circular arrangements = 24.
The general formula for circular permutations of distinct objects:
For : ✓
Why This Works
The formula comes from the “fix one” argument. In linear permutations, counts all arrangements, but each distinct circular arrangement is counted times (once for each rotation). So:
The divisor represents the rotational equivalences we’ve collapsed.
Alternative Method — Direct Reasoning
Think of it as assigning seats. Seat Person A anywhere (1 way, since the table is symmetric). Then:
- Person B: 4 remaining seats → 4 choices
- Person C: 3 remaining seats → 3 choices
- Person D: 2 remaining seats → 2 choices
- Person E: 1 remaining seat → 1 choice
Total: .
If the problem also asks about a necklace (where the arrangement can be flipped — clock-wise and anticlockwise are the same), divide by 2 more: . For a round table, usually clockwise and anticlockwise are different (you can tell by looking at who is to your left vs right). Always check the problem statement.
Common Mistake
The classic error: writing without accounting for the circular nature. In a circular arrangement, the 120 linear arrangements collapse into distinct ones. Many students forget to divide by (or equivalently, forget to “fix” one person). For any circular arrangement question, immediately write , not .