0

I was asked to find out the number of conjugacy classes in the permutation group $ S_6 $.It is 11.But for large n it is difficult to find out .so I want to know is there any way to find out the number of conjugacy classes for large n?

1 Answers1

4

A conjugacy class in $S_n$ is determined by the length of its cycles. That's a partition of $n$. The partition numbers (OEIS link) are well-studied. There's a fairly nice generating function, and recursive formulas we can derive from that, but no closed form.

OK, the generating function and recursive formula I mentioned, because OEIS formatting doesn't make these things easy to read (Finding them? They're below the references):

To build a partition, we count how many pieces of each size there are. Pieces of size $1$? That's a factor of $(1+x+x^2+x^3+\cdots)$ in the generating function; the degree of $x^k$ tells us what those $k$ pieces of size $1$ add to. Pieces of size $2$? That's a factor of $(1+x^2+x^4+x^6+\cdots)$, with $k$ pieces giving us the $x^{2k}$ term since their sum is $2k$. Then we get $(1+x^3+x^6+x^9+\cdots)$ for pieces of size 3, and so on. Taken as a whole, the generating function for the partition numbers $p_n$ is $$f(x)=\sum_{n=0}^{\infty} p_n x^n = \prod_{j=1}^{\infty} (1+x^j+x^{2j}+x^{3j}+\cdots) = \prod_{j=1}^{\infty}\frac{1}{1-x^j}$$ For a recursive formula, we have $$p_n = \frac1n\sum_{j=0}^{n-1}\sigma(n-j)p_j$$ where $\sigma(m)$ is the sum of the divisors of $m$. I don't have a proof of that one off the top of my head, but it's certainly convenient enough to calculate with.

jmerry
  • 19,403
  • Thanks .So basically I have to determine different length of cycles and product of disjoint cycles and this is the only way. – suchanda adhikari Feb 12 '19 at 19:54
  • I checked the link and I saw the number of conjugacy classes for different permutation groups are given but other than that I did not understand a thing .If I will be asked to find out the number of conjugacy classes of a specific permutation group there is no way other than checking the different length of cycles and product of disjoint cycles.please tell me I am right or wrong. – suchanda adhikari Feb 12 '19 at 20:31
  • I've added some material on the generating function and recursive formula I referenced. – jmerry Feb 12 '19 at 22:04
  • very helpful thank you sir.. – suchanda adhikari Feb 16 '19 at 06:46