Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 13.2.14
Exercise 13.2.14
Let be as in Example 13.2.10, and assume that is irreducible over .
- (a)
- Compute and .
- (b)
- Factor , and conclude that is a root of .
- (c)
- Show that the substitution transforms into .
- (d)
- Use part (c) to give an elementary proof that is solvable by radicals over .
Answers
Proof.
- (a)
-
We obtain the discriminant with Sage:
S.<p,q,x> = QQ[] f = x^5 + p*x^3 +(1/5)*p^2*x + q Delta = f.discriminant(x);Delta.factor()So
We use the following procedure to compute a sextic resolvent with the same method as in Exercise 6:
def resolvent(f): l = f.coefficients(sparse = False) R.<Delta,x1,x2,x3,x4,x5,y1,y2,y3,y4,y5,y,P,Q,e> = PolynomialRing(QQ, order = ’degrevlex’) elt = SymmetricFunctions(QQ).e() e = [elt([i]).expand(5).subs(x0=x1, x1=x2, x2=x3, x3 = x4, x4 = x5) for i in range(6)] J = R.ideal(e[1]-y1, e[2]-y2, e[3]-y3,e[4]-y4,e[5]-y5) G = J.groebner_basis() u1 =x1*x2 + x2*x3 + x3*x4 + x4*x5 + x5*x1 - x1*x3 - x3*x5 -x5*x2 - x2*x4 -x4*x1 u2 = u1.subs(x1 = x2, x2 = x3, x3 = x1) u3 = u1.subs(x2 = x3, x3 = x4, x4 = x2) u4 = u1.subs(x3 = x4, x4 = x5, x5 = x3) u5 = u1.subs(x1 = x4, x4 = x5, x5 = x1) u6 = u1.subs(x1 = x2, x2 = x5, x5 = x1) f1 = (y-u1) * (y-u2) * (y-u3) * (y-u4) * (y-u5) * (y-u6) var(’sigma_1,sigma_2,sigma_3,sigma_4,sigma_5’) g = f1.reduce(G).subs(y1=sigma_1, y2=sigma_2, y3=sigma_3, y4=sigma_4, y5= sigma_5) h = g.collect(y); B2 = h.coefficient(y,4) B4 = h.coefficient(y,2) B6 = h.coefficient(y,0) b2 = B2.subs(sigma_1 = -l[4], sigma_2= l[3],sigma_3 = -l[2], sigma_4 = l[1], sigma_5 = -l[0]) b4 = B4.subs(sigma_1 = -l[4], sigma_2= l[3],sigma_3 = -l[2], sigma_4 = l[1], sigma_5 = -l[0]) b6 = B6.subs(sigma_1 = -l[4], sigma_2= l[3],sigma_3 = -l[2], sigma_4 = l[1], sigma_5 = -l[0]) theta_f = [(y^3+b2*y^2+b4*y+b6)^2 - 2^10*Delta*y,b2,b4,b6] return theta_fThen we obtain and :
K.<p,q> = QQ[] S.<x> =PolynomialRing(K, order = ’degrevlex’) f = x^5 + p*x^3 +(1/5)*p^2*x + q resolvent(f)[1:4]theta_f=resolvent(f)[0];theta_f
We obtained the results given in the text.
- (b)
-
To find the rational root of
we write
theta_f.subs(Delta = (1/5)^5*(4*p^5+3125*q^2)^2)).factor()
Thus
By Corollary 13.2.11, is solvable by radicals over .
- (c)
-
The substitution
is obtained by
z = var(’z’) g = f.subs(x = z - p/(5*z)) g.expand()Thus
- (d)
-
Let
.
So the roots of are
where .
Let be a root of in . There exists such that , so
Since , for some . If is the splitting field of in , then
Write . Since ,
where , so is included in some radical extension of .
Therefore is solvable by radicals over .
Note: We can choose so that . Therefore
where the chain of inclusions
proves that this last field is a radical extension.