Homepage › Solution manuals › David S. Dummit › Abstract Algebra › Exercise 4.3.9 (Centralizer of $(1\ 2)(3\ 4)$ in $S_n$)
Exercise 4.3.9 (Centralizer of $(1\ 2)(3\ 4)$ in $S_n$)
Show that for all . Determine the elements in this centralizer explicitly.
Answers
Proof. Let denote the orbit of for the action of conjugation, i.e. the conjugation class of .
We compute the cardinality of .
By Proposition 11, the elements of are the permutations , where are distinct. We can choose among elements , then we choose among the elements distinct of , among elements and among elements. This gives choices.
Moreover
so we must divide this result by to obtain
By Proposition 6,
so, if ,
Note that every permutation which fixes the elements commutes with . This gives permutations of in .
Moreover, we can check that the following permutations in the set commute with :
Since the support of these permutations is included in , every permutation of the form , where and is in the centralizer , and there are such permutations. By the order computation above, this is the full centralizer of in :
where
□
With Sagemath:
sage: G = SymmetricGroup(4) sage: s = G([(1,2),(3,4)]); s (1,2)(3,4) sage: G.centralizer(s).list() [(), (1,3)(2,4), (3,4), (1,2), (1,2)(3,4), (1,4,2,3), (1,3,2,4), (1,4)(2,3)]