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 must there be in a simple group of order ?
Answers
Proof. Let be a simple group of order . By Sylow’s Theorem,
therefore .
Since is simple, , thus
Two distinct Sylow -subgroups have trivial intersection, thus there are elements of order . □
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]