Homepage Solution manuals David S. Dummit Abstract Algebra Exercise 4.3.3 (Conjugacy classes in $Z_2\times S_3$, $S_3 \times S_3$, $Z_3 \times A_4$)

Exercise 4.3.3 (Conjugacy classes in $Z_2\times S_3$, $S_3 \times S_3$, $Z_3 \times A_4$)

Find all the conjugacy classes and their sizes in the following groups:

(𝐚) Z 2 × S 3 (𝐛) S 3 × S 3 (𝐜) Z 3 × A 4 .

Answers

Proof. Conjugacy classes of G :

(a)
G = Z 2 × S 3 .

We write Z 2 = { 1 , 1 } .

Let h = ( a , σ ) Z 2 × S 3 , and g = ( b , τ ) Z 2 × S 3 . Since Z 2 is abelian,

𝑔h g 1 = ( 𝑏𝑎 b 1 , 𝜏𝜎 τ 1 ) = ( a , 𝜏𝜎 τ 1 ) .

So the conjugacy class of ( a , σ ) Z 2 × S 3 is { a } × C , where C is the conjugacy class of σ in S 3 , given in Section 3. This gives 6 conjugation classes in G .

( a , σ ) C ( a , σ ) ( 1 , ( ) ) { ( 1 , ( ) ) } ( 1 , ( 1 2 ) ) { ( 1 , ( 1 2 ) , ( 1 , ( 2 3 ) ) , ( 1 , ( 1 3 ) } ( 1 , ( 1 2 3 ) ) { ( 1 , ( 1 2 3 ) , ( 1 , ( 1 3 2 ) ) } ( 1 , ( ) ) { ( 1 , ( ) ) } ( 1 , ( 1 2 ) ) { ( 1 , ( 1 2 ) , ( 1 , ( 2 3 ) ) , ( 1 , ( 1 3 ) } ( 1 , ( 1 2 3 ) ) { ( 1 , ( 1 2 3 ) , ( 1 , ( 1 3 2 ) ) }

The center of G is Z ( G ) = { ( 1 , ( ) ) , ( 1 , ( ) ) } and the class equation is

12 = 2 + 3 + 2 + 3 + 2 .

(b)
G = S 3 × S 3 .

If h = ( σ , τ ) S 3 × S 3 and ( λ , μ ) S 3 × S 3 , then

𝑔h g 1 = ( 𝜆𝜎 λ 1 , 𝜇𝜏 μ 1 ) .

Therefore the conjugacy class of h is the cartesian product of the conjugacy class of σ by the conjugacy class of τ .

This gives 8 conjugacy classes.

( σ , τ ) C ( σ , τ ) ( ( ) , ( ) ) { ( ( ) , ( ) ) } ( ( ) , ( 1 2 ) ) { ( ( ) , ( 1 2 ) , ( ( ) , ( 2 3 ) ) , ( ( ) , ( 1 3 ) } ( ( 1 2 ) , ( ) ) { ( ( 1 2 ) , ( ) ) , ( ( 2 3 ) , ( ) ) , ( ( 1 3 ) , ( ) ) } ( ( 1 2 3 ) , ( ) ) { ( 1 2 3 ) , ( ) ) , ( 1 3 2 ) , ( ) ) } ( ( ) , ( 1 2 3 ) ) { ( ( ) , ( 1 2 3 ) ) , ( ( ) , ( 1 3 2 ) ) } ( ( 1 2 ) , ( 1 2 ) ) { ( ( 1 2 ) , ( 1 2 ) ) , ( ( 1 2 ) , ( 2 3 ) ) , ( ( 1 2 ) , ( 1 3 ) ) , ( ( 1 3 ) , ( 1 2 ) ) , ( ( 1 3 ) , ( 2 3 ) ) , ( ( 1 3 ) , ( 1 3 ) ) , ( ( 2 3 ) , ( 1 2 ) , ( ( 2 3 ) , ( 2 3 ) ) , ( ( 2 3 ) , ( 1 3 ) } ( ( 1 2 ) , ( 1 2 3 ) ) { ( ( 1 2 ) , ( 1 2 3 ) , ( ( 2 3 ) , ( 1 2 3 ) , ( ( 1 3 ) , ( 1 2 3 ) , ( ( 1 2 ) , ( 1 3 2 ) , ( ( 2 3 ) , ( 1 3 2 ) ) , ( ( 1 3 ) , ( 1 3 2 ) ) } ( ( 1 2 3 ) , ( 1 2 ) ) { ( ( 1 2 3 ) , ( 1 2 ) ) , ( ( 1 2 3 ) , ( 2 3 ) ) , ( ( 1 2 3 ) , ( 1 3 ) ) , ( ( 1 3 2 ) , ( 1 2 ) ) , ( ( 1 3 2 ) , ( 2 3 ) ) , ( ( 1 3 2 ) , ( 1 3 ) ) } ( ( 1 2 3 ) , ( 1 2 3 ) ) { ( ( 1 2 3 ) , ( 1 2 3 ) ) , ( ( 1 2 3 ) , ( 1 3 2 ) ) , ( ( 1 3 2 ) , ( 1 2 3 ) ) , ( ( 1 3 2 ) , ( 1 3 2 ) ) }

The center is trivial, and the class equation is

36 = 1 + 3 + 3 + 2 + 2 + 9 + 6 + 6 + 4 .

(c)
G = Z 3 × A 4 .

We know the 4 conjugation classes of A 4 by Exercise 2. As in part (a), the conjugacy class of ( a , σ ) Z 3 × A 4 is { a } × 𝒪 σ , where 𝒪 σ is the conjugacy class of σ in A 4 . This gives 12 conjugacy classes (we write Z 3 = { 1 , x , x 2 } ):

{ x i } × 𝒪 σ , i [ [ 0 , 2 ] ] , σ { ( ) , ( 1 2 3 ) , ( 2 1 3 ) , ( 1 2 ) ( 3 4 ) }

of sizes 1 , 4 , 4 , 3 , 1 , 4 , 4 , 3 , 1 , 4 , 4 , 3 (class equation: 36 = 3 + 3 ( 4 + 4 + 3 ) )

With Sagemath :

sage: G = SymmetricGroup(3)
sage: H = CyclicPermutationGroup(2)
sage: P = cartesian_product([H,G])
sage: for h in H:
....:     for g in [G([(1,2)]), G([(1,2,3)])]:
....:         p = P((h,g))
....:         print(p,’=>’, p.conjugacy_class().list())
....:
(((), (1,2)), ’=>’, [((), (1,2)), ((), (1,3)), ((), (2,3))])
(((), (1,2,3)), ’=>’, [((), (1,2,3)), ((), (1,3,2))])
(((1,2), (1,2)), ’=>’, [((1,2), (1,2)), ((1,2), (1,3)), ((1,2), (2,3))])
(((1,2), (1,2,3)), ’=>’, [((1,2), (1,2,3)), ((1,2), (1,3,2))])

(Here G = S 3 and Z 2 = { ( ) , ( 1 2 ) } = S 2 .)

User profile picture
2026-02-02 11:50
Comments