Calculates the number of ways to seat n people in a circle, (n − 1)!. Arrangements that differ only by rotation count as one, which is why it is (n − 1)! and not n!.
A circular permutation counts the ways of arranging items around a circle.
Arranged in a row there would be orders, but on a circle any arrangement that is a rotation of another counts once, so we divide by and are left with .
Seat 5 people at a round table.
In a row there would be orders, but shifting everyone one seat round the table changes nothing, so the 120 fall into groups of 5 identical arrangements: .
Fix one person in place. Once someone is pinned to a reference seat, the remaining people simply have to be arranged in a row, which immediately gives .