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 -subgroups of and .
Answers
Proof.
Let be the group . Then the number of Sylow 2-subgroups satisfies and , so or .
Note that
is a Sylow -subgroup. Moreover
Therefore , so . The three Sylow -subgroups of are
Since has a unique subgroup of order , this subgroup is normal in , so . The unique Sylow -subgroup of is
(The unicity is proved in Exercise 5.)
Let be the group , of order . Then or , and or .
There are Sylow -subgroups of , given by
We know that , so this list is complete.
has a subgroup of order . This -Sylow of is
If , then using ,
Thus is normal in , and so is the unique Sylow -subgroup of . □
Note : We confirm these results on with GAP, where .
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) ] )