Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 13.2.20
Exercise 13.2.20
In the Mathematical Notes to Section 10.3, we noted that the roots of the polynomial can be constructed using a marked ruler and compass. Show that this polynomial is not solvable by radicals over .
Answers
Proof. With the same procedures as in Exercise 19, we obtain
R.<x> = QQ[] f = x^5 - 4*x^4 + 2*x^3 + 4 *x^2 + 2*x -6;f
f.is_irreducible()
theta = resolvent(f)[0]; theta.subs(Delta = f.discriminant()).expand()
res = rational_root(theta); res
f.discriminant().factor(),f.discriminant().is_square()
So the Galois group of is , and is not solvable by radicals over .
Verification:
f.galois_group().gens()
□
0.1 Resolvents