Permutation and Combination // May 2026

Mastering Circular Permutations
Necklaces and Beads

A
Author Node Archive Editorial
Temporal Read 5 Min Read

Understanding Circular Permutations

In combinatorics, when we arrange objects in a line, the starting and ending positions are distinct. However, when arranging items in a circle, there is no fixed 'first' position. This is why we use circular permutations.

The Basic Circular Arrangement

The number of ways to arrange $n$ distinct objects in a circle is given by the formula:

$$(n - 1)!$$

This accounts for the fact that rotating the arrangement does not produce a new, distinct permutation. By fixing one object in place, we remove the rotational symmetry.

The Necklace Problem

Necklaces (and bracelets) present a unique case because they can be flipped over. When a necklace is flipped, the clockwise arrangement appears as a counter-clockwise arrangement. Because the front and back of a necklace are identical for the purpose of the arrangement, we must divide our total circular permutations by 2.

The formula for arranging $n$ distinct beads on a necklace is:

$$\frac{(n - 1)!}{2}$$

Solving the Problem

For this problem, we have $n = 6$ distinct beads.

  1. Calculate circular permutations: $(6 - 1)! = 5! = 120$
  2. Adjust for flipping the necklace: $\frac{120}{2} = 60$

There are 60 distinct ways to string 6 different beads on a necklace.

Platform Resources