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 2 -subgroups of S 5 and an element of S 5 that conjugates one into the other.

Answers

Proof. Consider the subgroup of S 5 given by

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

Explicitly

H = { ( ) , ( 1 2 ) , ( 1 4 ) ( 2 3 ) , ( 1 3 2 4 ) , ( 3 4 ) , ( 1 2 ) ( 3 4 ) , ( 1 4 2 3 ) , ( 1 3 ) ( 2 4 ) } ,

Then | H | = 8 , so H is a 2 -Sylow of S 5 . If σ = ( 1 2 3 5 ) , then

K = 𝜎𝐻 σ 1 = ( 2 3 ) , ( 4 5 ) , ( 2 4 ) ( 3 5 )

is also a 2 -Sylow of S 5 , distinct of H , since ( 2 4 ) ( 3 5 ) H . □

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) ]

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