Homepage Solution manuals David S. Dummit Abstract Algebra Exercise 4.5.6 (Sylow $3$-subgroups of $A_4$, of $S_4$)

Exercise 4.5.6 (Sylow $3$-subgroups of $A_4$, of $S_4$)

Exhibit all Sylow 3 -subgroups of A 4 and all Sylow 3 -subgroups of S 4 .

Answers

Proof. The lattice of subgroups of A 4 given p. 110 shows that the is exactly 4 subgroups of A 4 of order 3 , which are Sylow 3 -subgroups of A 4 . They are

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

Since | S 4 | = 4 ! = 2 3 3 , they are also Sylow 3 -subgroups of S 4 . If n 3 is the number of Sylow 3 -subgroups of S 4 , then by Sylow’s Theorem

n 3 1 ( 𝑚𝑜𝑑 3 ) and n 3 24 ,

thus n 3 = 1 or n 3 = 4 . This shows that that the preceding list is complete. The Sylow 3 -subgroups of S 4 are given by (1). □

Note: The group G of rotations of the cube is isomorphic to S 4 . This shows that the four Sylow 3 -subgroups of G are given by the rotations of angle k 2 π 3 around the four big diagonals.

Note 2: With GAP:

gap> S4:=SymmetricGroup(4);;
gap> T := Subgroup(S4,[]);;
gap> L:=IntermediateSubgroups(S4,T).subgroups;;
gap> for H in L do
>     if Order(H) = 3 then
>        Print(H,"\n");
>     fi;
> od;
Group( [ (2,4,3) ] )
Group( [ (1,3,2) ] )
Group( [ (1,3,4) ] )
Group( [ (1,4,2) ] )

User profile picture
2026-03-08 10:26
Comments