Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 13.1.8
Exercise 13.1.8
In Example 10.3.10, we showed that the roots of can be constructed using origami. Show that the splitting field of is an extension of of degree 24. By the results of Section 10.1, it follows that the roots of are not constructible with straightedge and compass, since is not a power of .
Answers
Proof. The discriminant of is
so is not a square in .
The Ferrari resolvent is
and
has no root in , so is irreducible over .
By theorem 13.1.1, . Therefore the splitting field of has degree
Sage instructions :
var(’m’) R.<m> = QQ[m] f= 7*m^4-16*m^3-21*m^2+8*m+4 g=f/7 d=g.discriminant() d.factor()
R.<y> = QQ[] l = f.coefficients(sparse=False); c1 = -l[3]/l[4]; c2 = l[2]/l[4];c3 = -l[1]/l[4]; c4 = l[0]/l[4]; theta_f = y^3 -c2*y^2 +(c1*c3-4*c4)*y - c3^2-c1^2*c4 + 4*c2*c4;
theta_f.is_irreducible()
□