Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 13.2.9
Exercise 13.2.9
This exercise will prove the first equivalence of Proposition 13.2.7.
- (a)
- First suppose that is irreducible. Prove that is divisible by 6, and explain why this implies that .
- (b)
- Now suppose that . Prove that acts transitively on . However, we don’t know that are distinct.
- (c)
- Let be the minimal polynomial of over . By part (b), it is also the minimal polynomial of . Prove that , where , or . The proof of Theorem 13.2.6 shows that cannot occur, and implies that is irreducible over . It remains to consider what happens when or .
- (d)
- Show that implies that . Hence this case can’t occur.
- (e)
- Show that implies that , and then use this to show that .
Answers
Proof.
- (a)
-
Suppose that
is irreducible over
. Then
is the minimal polynomial of
over
. Therefore
Since ,
By the Tower Theorem,
therefore
Since , is not a subgroup of . By Theorem 13.2.2, since is a transitive subgroup of , or :
- (b)
-
Now suppose that
. Then
so and the corresponding are in . By Exercise 13.2.5, , thus the orbit of under the action of is . This is sufficient to prove that acts transitively on .
- (c)
-
Let
be the minimal polynomial of
over
. There exists
such that
, and since
,
, so
is a root of
, where
is irreducible. Therefore
is the minimal polynomial over
of
.
Under the hypothesis of Theorem 13.2.7 (and 13.2.6), is a separable extension, so is separable, therefore
where are distinct. Since is the minimal polynomial over of , each is a for some , and since divides , each is a , so , and are the distinct roots of .
Let the order of multiplicity of in , so . Let such that . Applying to , we obtain , so , and similarly , so the distinct have the same order of multiplicity in . Therefore
Since , , so or .
gives . Since the characteristic of is not 2, this is impossible by the proof of Theorem 13.2.6. It remains to prove the impossibility of or .
- (d)
-
If
,
By Proposition 13.2.5, this gives
so
Therefore the coefficient in is . Since the characteristic is not 2,
Using , the coefficient in is , so
and then the coefficient in is , so
Therefore . Since the characteristic is not 2, , in contradiction with the assumed separability of .
- (e)
-
If
, there exist coefficients
such that
We obtain with the equations corresponding to the coefficients of :
which gives
If we substitute these values in the coefficient of , we obtain
The coefficient of gives .
If we suppose that the characteristic is not , then
The coefficient of gives
Therefore
Since is separable, this is a contradiction, so is irreducible.
It remains the case where the characteristic is 3. Then the equation
gives the system
Therefore , so the initial equation gives
and we have the same contradiction , and the same conclusion:
is irreducible over .
We give here the corresponding Sage instructions:
y,b2,b4,b6,Delta,a,b,c = var(’y,b2,b4,b6,Delta,a,b,c’) u = (y^3+b2*y^2+b4*y+b6)^2 - 2^10*Delta*y - (y^2+a*y+b)^3 u = u.expand().collect(y); ueq = [u.coefficient(y^i) for i in range(3,6)] solve(eq,b2,b4,b6)v = u.coefficient(y^3) w = v.subs(b2 == 3/2*a, b4 == 3/8*a^2 + 3/2*b, b6 == -1/16*a^3 + 3/4*a*b) w.expand()s = u.coefficient(y^2) t = s.subs(b2 == 3/2*a, b4 == 3/8*a^2 + 3/2*b, b6 == -1/16*a^3 + 3/4*a*b) t.expand().factor()p = u.coefficient(y) q = p.subs(b2 == 3/2*a, b4 == 3/8*a^2 + 3/2*b, b6 == -1/16*a^3 + 3/4*a*b) q.expand()q.expand().subs(b = a^2/4)
We obtained .