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 -subgroups of and all Sylow -subgroups of .
Answers
Proof. The lattice of subgroups of given p. 110 shows that the is exactly 4 subgroups of of order , which are Sylow -subgroups of . They are
Since , they are also Sylow -subgroups of . If is the number of Sylow -subgroups of , then by Sylow’s Theorem
thus or . This shows that that the preceding list is complete. The Sylow -subgroups of are given by (1). □
Note: The group of rotations of the cube is isomorphic to . This shows that the four Sylow -subgroups of are given by the rotations of angle 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) ] )