Homepage Solution manuals David S. Dummit Abstract Algebra Exercise 4.5.4 (Sylow subgroups of $D_{12}$ and $S_3 \times S_3$)

Exercise 4.5.4 (Sylow subgroups of $D_{12}$ and $S_3 \times S_3$)

Exhibit all Sylow 2-subgroups and Sylow 3 -subgroups of D 12 and S 3 × S 3 .

Answers

Proof.

Let G be the group D 12 . Then the number n 2 of Sylow 2-subgroups satisfies n 2 12 and n 2 1 ( 𝑚𝑜𝑑 2 ) , so n 2 = 1 or n 2 = 3 .

Note that

H = 𝑠𝑟 , r 3 = { 1 , 𝑠𝑟 , r 3 , s r 4 }

is a Sylow 2 -subgroup. Moreover

𝑠𝐻 s 1 = s ( 𝑠𝑟 ) s 1 , s r 3 s 1 = s r 5 , r 3 , ( s r 1 ) H ( s r 1 ) 1 = s r 1 ( 𝑠𝑟 ) s r 1 , s r 1 r 3 ( s r 1 ) = s r 3 , r 3 .

Therefore n 2 3 , so n 2 = 3 . The three Sylow 2 -subgroups of D 12 are

𝑠𝑟 , r 3 , s r 3 , r 3 , s r 4 , r 3 .

Since D 12 has a unique subgroup P = r 2 = { 1 , r 2 , r 4 } of order 3 , this subgroup is normal in G , so n 3 = 1 . The unique Sylow 3 -subgroup of D 12 is

r 2 .

(The unicity is proved in Exercise 5.)

Let G be the group S 3 × S 3 , of order 36 = 2 2 3 2 . Then n 2 = 1 , 3 or 9 , and n 3 = 1 or n 3 = 4 .

There are 9 Sylow 2 -subgroups of G , given by

( 1 2 ) , ( 1 2 ) , ( 1 2 ) , ( 1 3 ) , ( 1 2 ) , ( 2 3 ) , ( 1 3 ) , ( 1 2 ) , ( 1 3 ) , ( 1 3 ) , ( 1 3 ) , ( 2 3 ) , ( 2 3 ) , ( 1 2 ) , ( 2 3 ) , ( 1 3 ) , ( 2 3 ) , ( 2 3 ) .

We know that n 2 9 , so this list is complete.

G has a subgroup H of order 9 . This 3 -Sylow of S 3 × S 3 is

H = ( ( 1 2 3 ) , ( ) ) , ( ( ) , ( 1 2 3 ) ) .

If ( γ , δ ) S 3 × S 3 , then using ( 1 2 3 ) S 3 ,

( γ , δ ) H ( γ , δ ) 1 = ( γ ( 1 2 3 ) γ 1 , ( ) ) , ( ( ) , δ ( 1 2 3 ) δ 1 ) = ( ( 1 2 3 ) , ( ) ) , ( ( ) , ( 1 2 3 ) ) = H .

Thus H is normal in G , and so H is the unique Sylow 3 -subgroup of S 3 × S 3 . □

Note : We confirm these results on S 3 × S 3 with GAP, where G = S 3 × S 3 ( 1 2 3 ) , ( 1 2 ) , ( 4 5 6 ) , ( 4 5 ) .

gap> a := (1,2,3);; b := (1,2);; c := (4,5,6);; d := (4,5);;
gap> G := Group([a,b,c,d]);; Order(G);
36
gap> T := Subgroup(G,[]);;
gap> L:=IntermediateSubgroups(G,T).subgroups;;
gap> for H in L do
>     if Order(H) = 4 or Order(H) = 9 then
>         Print(Order(H)," : ",H, "\n");
>     fi;
> od;
4 : Group( [ (5,6), (2,3) ] )
4 : Group( [ (4,6), (2,3) ] )
4 : Group( [ (4,5), (2,3) ] )
4 : Group( [ (5,6), (1,2) ] )
4 : Group( [ (4,6), (1,2) ] )
4 : Group( [ (4,5), (1,2) ] )
4 : Group( [ (5,6), (1,3) ] )
4 : Group( [ (4,6), (1,3) ] )
4 : Group( [ (4,5), (1,3) ] )
9 : Group( [ (4,5,6), (1,2,3) ] )

User profile picture
2026-03-06 11:49
Comments