Homepage › Solution manuals › David S. Dummit › Abstract Algebra › Exercise 4.5.8 (Sylow $2$-subgroups of $S_5$)
Exercise 4.5.8 (Sylow $2$-subgroups of $S_5$)
Exhibit two distinct Sylow -subgroups of and an element of that conjugates one into the other.
Answers
Proof. Consider the subgroup of given by
Explicitly
Then , so is a -Sylow of . If , then
is also a -Sylow of , distinct of , since . □
With GAP:
gap> G := SymmetricGroup(5);; gap> T := Subgroup(G,[]);; gap> L := IntermediateSubgroups(G,T).subgroups;; gap> for H in L do > if Order(H) = 8 then > Print(H, "\n"); > fi; > od; Group( [ (4,5), (2,3), (2,4)(3,5) ] ) Group( [ (3,5), (2,4), (2,3)(4,5) ] ) Group( [ (3,4), (2,5), (2,3)(4,5) ] ) Group( [ (1,4), (2,3), (1,3)(2,4) ] ) Group( [ (1,3), (2,4), (1,4)(2,3) ] ) Group( [ (3,4), (1,2), (1,4)(2,3) ] ) Group( [ (1,4), (3,5), (1,3)(4,5) ] ) Group( [ (1,3), (4,5), (1,4)(3,5) ] ) Group( [ (3,4), (1,5), (1,4)(3,5) ] ) Group( [ (1,4), (2,5), (1,5)(2,4) ] ) Group( [ (1,5), (2,4), (1,4)(2,5) ] ) Group( [ (4,5), (1,2), (1,4)(2,5) ] ) Group( [ (1,5), (2,3), (1,3)(2,5) ] ) Group( [ (1,3), (2,5), (1,5)(2,3) ] ) Group( [ (3,5), (1,2), (1,5)(2,3) ] ) gap> List(Group( [ (3,4), (1,2), (1,4)(2,3) ] )); [ (), (1,2), (1,4)(2,3), (1,3,2,4), (3,4), (1,2)(3,4), (1,4,2,3), (1,3)(2,4) ]
2026-03-09 10:08