Homepage Solution manuals David S. Dummit Abstract Algebra Exercise 4.5.45 (Sylow $p$- subgroups of $S_{2p}$)

Exercise 4.5.45 (Sylow $p$- subgroups of $S_{2p}$)

Find generators for a Sylow p -subgroup of S 2 p , where p is an odd prime. Show that this is an abelian group of order p 2 .

Answers

Proof. Since

| S 2 p | = ( 2 p ) ! = ( 2 p ) ( 2 p 1 ) p ( p 1 ) 2 ,

then

| S 2 p | = p 2 m , where  p m .

Therefore any Sylow p -subgroup of S 2 p has order p 2 , thus is abelian, as any group of order p 2 .

Consider the subgroup

P = σ , τ ,

Where

σ = ( 1 2 p ) , τ = ( p + 1 p + 2 2 p ) .

Then σ and τ commute, since their supports are disjoint. Thus

P = { σ i τ j 0 i p , 0 j p }

has order p 2 , so P is a Sylow p -subgroup of S 2 p . There are many distinct conjugates.

If Q is any Sylow p -subgroup of S 2 p , then Q is conjugate to P , so

Q = σ , τ ,

where

σ = ( a 1 a 2 a p ) , τ = ( a p + 1 a p + 2 a 2 p ) , [ [ 1 , 2 p ] ] = { a 1 , a 2 , , a 2 p } .

Example (with Sagemath):

sage: G = SymmetricGroup(10)
sage: P = G.sylow_subgroup(5); P.gens()
[(6,7,8,9,10), (1,2,3,4,5)]
sage: P.order()
25

User profile picture
2026-04-05 12:23
Comments