Homepage › Solution manuals › David A. Cox › Galois Theory › Exercise 5.3.15
Exercise 5.3.15
Let be the polynomial considered in Example 5.3.9. Use Maple or Mathematica to factor and to verify that the product of the distinct irreducible factors of is the polynomial given in (5.10).
Answers
Proof. Sage instructions:
f = x^11-x^10+2*x^8-4*x^7+3*x^5-3*x^4+x^3+3*x^2-x-1; f
f1 = f.derivative(); f1
d = gcd(f,f1); d
p = (f/d).simplify_rational(); p
v = p.factor(); v
w = d.factor(); w
s = f.factor(); s
s.expand()
2022-07-19 00:00