I have a bit of a problem. I'm currently reading about permutations, and I have a little exercise that asked me to find all cycle structures in $S_6$. I came up with the following
$ ( -)\\ (- -)\\ (- - -)\\ (- - - -)\\ (- - - - -)\\ (- - - - - -)\\ (- -)(--)\\ (- -)(---)\\ (- -)(----)\\ (- -)(--)(--)\\ (---)(---) $
Now, according to the solutions at the end of my book. The above is correct. Now, I got curious and wanted to check how many elements there is of each cycle structure. And I came up with the following
$ ( -) \text{ 1 element}\\ (- -) \text{ 15 elements}\\ (- - -)\text{ 40 elements}\\ (- - - -) \text{ 90 elements}\\ (- - - - -) \text{ 144 elements}\\ (- - - - - -)\text{ 120 elements}\\ (- -)(--) \text{ 45 elements}\\ (- -)(---) \text{ 60 elements}\\ (- -)(----) \text{ 45 elements}\\ (- -)(--)(--) \text{ 30 elements}\\ (---)(---) \text{ 40 elements} $
However, the above gives me 630 elements in total. Which is wrong since the order of $S_6 $ is $n!$.
The way i've calculated how many elements are by taking how many ways there is fill a given cycle structure with elements, and then dividing out elements due to it not mattering which element is the first in a cycle, or which cycle is the first in a structure. So, for example:
For$(--)(--)$ we have $6\times5\times4\times3 / (2\times2\times2)$, for $(---)$ it would be $6\times5\times4 / 3$ and for $(--)(--)(--)$ it would be $6!/(2\times2\times2\times3)$
I would really appreciate it if somebody could point out my mistake here :-)