Homepage › Solution manuals › David S. Dummit › Abstract Algebra › Exercise 1.3.18 (Order of the elements of $S_5$)
Exercise 1.3.18 (Order of the elements of $S_5$)
Find all numbers such that contains an element of order . [Use Exercise 15.]
Answers
Proof. Let be any element of .
By Exercise 15, the order equals the least common multiple of the lengths of the cycles in its decomposition.
The ways to decompose in some of integers are
Each way corresponds to a type of cycle decomposition, so the cycle decomposition of is one of the following forms
So the orders of the permutations of are . □
Verification with Sagemath:
sage: G = SymmetricGroup(5); G
Symmetric group of order 5! as a permutation group
sage: s = set()
sage: for sigma in G:
....: s.add(sigma.cycle_type())
....: s
....:
{[1, 1, 1, 1, 1], [2, 1, 1, 1], [2, 2, 1], [3, 1, 1], [3, 2], [4, 1], [5]}
sage: s = set()
sage: for sigma in G:
....: s.add(lcm(sigma.cycle_type()))
....: s
....:
{1, 2, 3, 4, 5, 6}