Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 12.2.13
Exercise 12.2.13
This exercise will show that not all choices of the in (12.21) give Galois resolvents. As in Example 12.2.1, has roots , and . This time we will use . Show that (12.21) gives the polynomial
This does not have distinct roots, so that is not a Galois resolvent.
Answers
Note. The results in Example 12.2.1 are false for . The first given factor of is , which has root and this root can’t be written for any permutation . Idem for the second factor .
The following Sage instructions gives the right answer :
t1,t2,t3,t4 = 0,1,2,4 var(’x1,x2,x3,x4’) V = t1*x1 + t2*x2 + t3*x3 + t4*x4 from itertools import permutations R.<y> = ZZ[] t = 1 for perm in permutations([x1,x2,x3,x4]): t = t * (y - V.subs(x1 = perm[0], x2 = perm[1], x3 = perm[2], x4 = perm[3])) s0= t.subs(x1 = sqrt(2),x2 = -sqrt(2), x3 = sqrt(3),x4 = -sqrt(3)) s = R(s0.expand()) s
and
s.factor()
gives the Galois resolvent :
The minimal polynomial of is the factor .
Proof.
The same instructions with give
This does not have distinct roots, so that is not a Galois resolvent.
(But the result is not the same as in the statement.) □