Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 13.2.17
Exercise 13.2.17
Following Example 13.2.14, consider the equations , and .
- (a)
- Use Maple or Mathematica and Section 2.3 to eliminate and obtain (13.26).
- (b)
- Show that coefficients of and in (13.26) both vanish if and only if and .
- (c)
-
The equation for
becomes trivial to solve when
and
. We could then solve for
using
, but there is a better way to proceed. Note that
follows from . Furthermore, we can use to eliminate the in the above equation. Then use to obtain an equation in which appears only to the first power. Solving this gives a formula for in terms of . The general version of this argument can be found in [Lagrange, p.223].
Answers
Proof.
- (a)
-
We eliminate
between the two polynomials
with the resultant , where
We can obtain this determinant with Sage:
R.<a,b,x,y> = QQ[] f = x^3 + 3*x + 1 g = x^2 + b*x + (a-y) S = matrix(R,[[1, 0, 1, 0, 0 ], [0, 1, b, 1, 0 ], [3, 0, a-y, b, 1 ], [1, 3, 0, a-y, b ], [0, 1, 0, 0, a-y]]) R = S.det(); RBut it is more easy to call the method "resultant" to obtain the same result:
res = f.resultant(g,x);res
The list of coefficients of is given by
l =[-res.subs(y=0)] + [-res.coefficient(y^k) for k in range(1,4)] lWe find the equation(13.26):
where .
- (b)
-
The coefficient of
vanishes if
, and then the coefficient of
vanishes if
:
so is a solution.
If we pick , then the above cubic equation becomes
so
By the property of the resultant, if is evaluated to , then there exists a common root of and in , where
- (c)
-
The Euclidean division of
by
gives
If is a common root of , then the remainder is 0, so
and this gives a formula for the roots of in terms of the roots of the resultant.
Since is an algebraic number of degree 3 over , and , there exists some polynomial of degree 2 such that .
To find this more simple formula for , we search the gcd of in the field by the extended Euclid’s algorithm.
This is obtained with the following Sage instructions:
K.<u>= QQ[sqrt(5)] R.<z> = K[] res = z^3 - (u-1)/2 L.<w> = K.extension(res) A.<x> = L[] f = x^3 + 3*x + 1 g = x^2 + (u - 1)/2 * x + (2 - u*w) gcd(f,g)We have obtained that
Since , so , .
Therefore the roots of are
We can write , then , where the cubic roots are chosen so that their product is real, equal to 1. Then
are the roots of . This is identical to the formulas obtained with Cardano’s formulas, with more sweat.