Exercise :
Find the maximum possible order of an element of the group of permutations $S_7$. Do the same thing for $S_{10}$.
Discussion :
Recalling that any permutation can be written as a product of disjoint cycles :
$$c=c_1 c_2\dots c_r$$
the order of $|σ|=\text{lcm}(|σ_1||σ_2|\dots|c_r|)$ and if $c_i$ has length $k_i$ then it will be $|c_i|=k_i$.
So what I have to do is find all the possible products of disjoint cycles, which will be :
$$(1,2) \space \text{ of order } \space 2$$ $$(1,2,3) \space \text{ of order } \space 3$$ $$(1,2,3,4) \space \text{ of order } \space 4$$ $$(1,2)(3,4) \space \text{ of order } \space 2$$ $$(1,2,3,4,5) \space \text{ of order } \space 5$$ $$(1,2,3)(4,5) \space \text{ of order } \space 6$$ $$(1,2,3,4,5,6) \space \text{ of order } \space 6$$ $$(1,2,3,4)(5,6) \space \text{ of order } \space 4$$ $$(1,2)(3,4)(5,6) \space \text{ of order } \space 2$$ $$(1,2,3)(4,5,6) \space \text{ of order } \space 3$$ $$(1,2,3)(4,5)(6,7) \space \text{ of order } \space 6$$ $$(1,2,3,4,5)(6,7) \space \text{ of order } \space 10$$ $$(1,2,3,4)(5,6,7) \space \text{ of order } \space 12$$ $$(1,2,3,4,5,6,7) \space \text{ of order } \space 7$$
So, the maximum possible order of an element in $S_7$ is $12$.
Question :
What I wanted to ask is $(1)$ am I correct, first of all?
And $(2)$ how am I supposed to find the maximum order of an element in $S_{10}$ ? Judging from all the possible cycle products in $S_7$ it will be a pretty big list for $S_{10}$. Am I missing a trick or some clever way to reach the desired result faster ?
P.S. : I know that Landau's function calculates exactly that thing, but we haven't been taught about it yet.