Homepage Solution manuals David S. Dummit Abstract Algebra Exercise 4.5.30 (Elements of order $7$ in a simple group of order $168$)

Exercise 4.5.30 (Elements of order $7$ in a simple group of order $168$)

How many elements of order 7 must there be in a simple group of order 168 ?

Answers

Proof. Let G be a simple group of order 168 = 2 3 3 . By Sylow’s Theorem,

n 7 2 3 3 = 24 , n 7 1 ( 𝑚𝑜𝑑 7 ) ,

therefore n 7 { 1 , 8 } .

Since G is simple, n 7 1 , thus

n 7 = 8 .

Two distinct Sylow 7 -subgroups have trivial intersection, thus there are n 7 6 = 48 elements of order 7 . □

With Sagemath:

sage: def sylow(n):
....:     l = []
....:     for p,a in n.factor():
....:         m = n // p^a
....:         divisors = [d for d in range(1,m+1) if m % d == 0]
....:         possible = [d for d in divisors if d % p == 1]
....:         l.append([p,possible])
....:     return(l)
....:
sage: n = 168
sage: for p, l in sylow(n):
....:     print p, ’=>’, l
....:
2 => [1, 3, 7, 21]
3 => [1, 4, 7, 28]
7 => [1, 8]

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