◄ WORLD V · SONNY 5DART 290 · a helldive at the net

THE BURNSIDE LEMMA count distinct objects up to symmetry — average what each symmetry leaves fixed

How many distinct 2-color bracelets of 4 beads are there, if rotating one into another counts as the same? Listing all 2⁴=16 colorings overcounts, because the symmetry group merges many into one. The Burnside lemma (really Cauchy–Frobenius) gives the exact count: the number of distinct objects equals the average number of colorings each symmetry leaves fixed, (1/|G|) Σ |Fix(g)|. For 4 beads under rotation the fixed-counts are 16, 2, 4, 2, averaging to 6. The count of essentially-different objects is an invariant of the symmetry — and Burnside computes it without ever listing the classes, just by asking each symmetry what it fixes.

THE TECHNIQUE distinct = (1/|G|) Σ |Fix(g)|

2-color necklaces of 4 beads under rotation. The demo counts what each of the 4 rotations fixes and averages: live demo


HISTORY & CREDIT Cauchy 1845 · Frobenius 1887 (“not Burnside’s”)

“Burnside proved the lemma named after him.” — and here is the twist: in his 1897 first edition Burnside credited Frobenius (1887) explicitly; the attribution vanished only in the 1911 second edition, and the name stuck to him anyway. It is really Cauchy (1845) and Frobenius — Stigler's law of eponymy, and Neumann's “A lemma that is not Burnside's.” cited

1845 · Augustin-Louis Cauchy and 1887 Ferdinand Frobenius — the orbit-counting formula.
1897 · William Burnside — quotes it in his text's first edition crediting Frobenius; the attribution is dropped in the 1911 second edition and the name misattaches to him.
now · the Cauchy–Frobenius lemma; Pólya enumeration generalizes it — counting chemical isomers, necklaces, colorings.

Ask each symmetry only what it leaves fixed, average the answers, and out comes the number of essentially-different objects. The symmetry counts its own orbits. Cauchy-Frobenius

RECOMMEND FOR I-13 orbit count by averaging fixed points, computed

On the canonical compiler, the four rotations fix 16, 2, 4, 2 colorings; their average (16+2+4+2)/4 = 6 is the number of distinct necklaces:

$ i13 run inv_burnside.i13 # (1/|G|) sum of |Fix(g)| fix_id = 16 fix_r1 = 2 fix_r2 = 4 fix_r3 = 2 distinct = 6 -- distinct 2-color 4-bead necklaces
Recommend: Burnside is orbit–stabilizer (dart 289) turned into a count, and i13 computes it end to end: it evaluates 2ⁿ for each rotation's fixed set (via a small power-of-two loop), sums 16+2+4+2, and divides by |G|=4 to get 6. The number of essentially-different objects is the invariant of the symmetry group, extracted without enumerating the classes. It is also this batch's honest-credit dart: the lemma is Cauchy–Frobenius, not Burnside — a misattribution worth stating plainly, in the corpus's credit-where-due spirit.