There was a problem of finding out the number of permutations of order 2 in S4.
There are two cases.
case-1
permutation of single cycle of length 2.
case-2
permutations of two disjoint cycles each of length 2.
For case-1 total number of permutations will be $\frac{4P2}{2}=6$
and these permutations are $(1 2), (1 3),(1 4),(2 3),(2 4),(3 4)$
For case-2 total number of permutations will be $\frac{4P2}{2}\times\frac{2P2}{2}=6\times1=6$
But the permutations of two disjoint cycles each of length 2 are $(12)(34),(13)(24),(14)(23)$
this is clearly 3 and not 6.
I'm sure I am making some sort of mistake in finding the number of permutations in case-2.
Please help me out.
If I may repeat your argument back to you...
For case 2 (the case where the cycle structure is $(..)(..)$), you say that the total number of permutations is $$ \frac{4!}{2!2!} \times \frac{2!}{2!2!} = 6.$$
This is made up of:
These $6$ permutations are: $$ (12)(34), \ (13)(24), \ (14)(23), \ (23)(14), \ (24)(13), \ (34)(12).$$
However, there is a subtlety!
In other words, we have double-counted.
To make up for the double-counting, we divide the whole answer by $2$, giving
$$ \frac{4!}{2!2!} \times \frac{2!}{2!2!} \times \frac 1 2 = 3,$$
which is now the correct answer.