Homepage › Solution manuals › David S. Dummit › Abstract Algebra › Exercise 4.5.9 (Sylow $3$-subgroups of $\mathrm{SL}_2(\mathbb{F}_3)$)
Exercise 4.5.9 (Sylow $3$-subgroups of $\mathrm{SL}_2(\mathbb{F}_3)$)
Exhibit all Sylow -subgroups of (cf. Exercise 9, Section 2.1).
Answers
Proof. By Exercise 2.4.9, (see the complete list in Exercice 2.4.9).
Among these elements, 8 have order , which can be paired in 4 pairs , thus there are exactly Sylow -subgroups:
□
With Sagemath:
sage: F = GF(3); sage: G = SL(2,F);G.order() 24 sage: l = [] ....: for g in G: ....: if g.order() == 3: ....: l.append(g) ....: l ....: [ [0 2] [1 2] [2 2] [0 1] [1 0] [1 1] [1 0] [2 1] [1 2], [0 1], [1 0], [2 2], [2 1], [0 1], [1 1], [2 0] ] sage: [g^2 for g in l] [ [2 1] [1 1] [0 1] [2 2] [1 0] [1 2] [1 0] [0 2] [2 0], [0 1], [2 2], [1 0], [1 1], [0 1], [2 1], [1 2] ]