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 | C S n ( ( 1 2 ) ( 3 4 ) ) | = 8 ( n 4 ) ! for all n 4 . Determine the elements in this centralizer explicitly.

Answers

Proof. Let 𝒪 σ denote the orbit of σ S n for the action of conjugation, i.e. the conjugation class of σ .

We compute the cardinality of 𝒪 ( 1 2 ) ( 3 4 ) .

By Proposition 11, the elements of 𝒪 ( 1 2 ) ( 3 4 ) are the permutations ( a b ) ( c d ) , where a , b , c , d are distinct. We can choose a among n elements 1 , 2 , n , then we choose b among the n 1 elements distinct of a , c among n 2 elements and d among n 3 elements. This gives n ( n 1 ) ( n 2 ) ( n 3 ) choices.

Moreover

( a b ) ( c d ) = ( a b ) ( d c ) = ( b a ) ( c d ) = ( b a ) ( d c ) = ( c d ) ( a b ) = ( c d ) ( b a ) = ( d c ) ( a b ) = ( d c ) ( b a ) ,

so we must divide this result by 8 to obtain

| 𝒪 ( 1 2 ) ( 3 4 ) | = n ( n 1 ) ( n 2 ) ( n 3 ) 8 = 1 8 n ! ( n 4 ) ! .

By Proposition 6,

| 𝒪 ( 1 2 ) ( 3 4 ) | = | S n : C S n ( ( 1 2 ) ( 3 4 ) ) | ,

so, if n 4 ,

| C S n ( ( 1 2 ) ( 3 4 ) ) | = | S n | | 𝒪 ( 1 2 ) ( 3 4 ) | = n ! ( 1 8 n ! ( n 4 ) ! ) = 8 ( n 4 ) ! .

Note that every permutation which fixes the elements 1 , 2 , 3 , 4 commutes with ( 1 2 ) ( 3 4 ) . This gives ( n 4 ) ! permutations of S [ [ 5 , n ] ] in C S n ( ( 1 2 ) ( 3 4 ) ) .

Moreover, we can check that the 8 following permutations in the set A commute with ( 1 2 ) ( 3 4 ) :

A = { ( ) , ( 1 3 ) ( 2 4 ) , ( 3 4 ) , ( 1 2 ) , ( 1 2 ) ( 3 4 ) , ( 1 4 2 3 ) , ( 1 3 2 4 ) , ( 1 4 ) ( 2 3 ) }

Since the support of these 8 permutations is included in { 1 , 2 , 3 , 4 } , every permutation of the form 𝜎𝜏 , where σ A and τ S [ [ 5 , n ] ] is in the centralizer C S n ( ( 1 2 ) ( 3 4 ) ) , and there are 8 ( n 4 ) ! such permutations. By the order computation above, this is the full centralizer of ( 1 2 ) ( 3 4 ) in S n :

C S n ( ( 1 2 ) ( 3 4 ) ) = { 𝜎𝜏 σ A , τ S [ [ 5 , n ] ] } ,

where

A = { ( ) , ( 1 3 ) ( 2 4 ) , ( 3 4 ) , ( 1 2 ) , ( 1 2 ) ( 3 4 ) , ( 1 4 2 3 ) , ( 1 3 2 4 ) , ( 1 4 ) ( 2 3 ) } .

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)]

User profile picture
2026-02-04 10:11
Comments