Theory Ferraris_Formula
section ‹Ferrari's formula for solving quartic equations›
theory Ferraris_Formula
imports
Polynomial_Factorization.Explicit_Roots
Polynomial_Interpolation.Ring_Hom_Poly
Complex_Geometry.More_Complex
begin
subsection ‹Translation to depressed case›
text ‹Solving an arbitrary quartic equation can easily be turned into the depressed case, i.e., where
there is no cubic part.›
lemma to_depressed_quartic: fixes a4 :: "'a :: field_char_0"
assumes a4: "a4 ≠ 0"
and b: "b = a3 / a4"
and c: "c = a2 / a4"
and d: "d = a1 / a4"
and e: "e = a0 / a4"
and p: "p = c - (3/8) * b^2"
and q: "q = (b^3 - 4*b*c + 8 * d) / 8"
and r: "r = ( -3 * b^4 + 256 * e - 64 * b * d + 16 * b^2 * c) / 256"
and x: "x = y - b/4"
shows "a4 * x^4 + a3 * x^3 + a2 * x^2 + a1 * x + a0 = 0
⟷ y^4 + p * y^2 + q * y + r = 0"
proof -
have "a4 * x^4 + a3 * x^3 + a2 * x^2 + a1 * x + a0 = 0 ⟷
(a4 * x^4 + a3 * x^3 + a2 * x^2 + a1 * x + a0) / a4 = 0" using a4 by auto
also have "(a4 * x^4 + a3 * x^3 + a2 * x^2 + a1 * x + a0) / a4
= x^4 + b * x^3 + c * x^2 + d * x + e"
unfolding b c d e using a4 by (simp add: field_simps)
also have "… = y^4 + p * y^2 + q * y + r"
unfolding x p q r
by (simp add: field_simps power4_eq_xxxx power3_eq_cube power2_eq_square)
finally show ?thesis .
qed
lemma biquadratic_solution: fixes p q :: "'a :: field_char_0"
shows "y^4 + p * y^2 + q = 0 ⟷ (∃ z. z^2 + p * z + q = 0 ∧ z = y^2)"
by (auto simp: field_simps power4_eq_xxxx power2_eq_square)
subsection ‹Solving the depressed case via Ferrari's formula›
lemma depressed_quartic_Ferrari: fixes p q r :: "'a :: field_char_0"
assumes cubic_root: "8*m^3 + (8 * p) * m^2 + (2 * p^2 - 8 * r) * m - q^2 = 0"
and q0: "q ≠ 0"
and sqrt: "a * a = 2 * m"
and b1: "b1 = p / 2 + m - q / (2 * a)"
and b2: "b2 = p / 2 + m + q / (2 * a)"
shows "y^4 + p * y^2 + q * y + r = 0 ⟷ poly [:b1,a,1:] y = 0 ∨ poly [:b2,-a,1:] y = 0"
proof -
let ?N = "y^2 + p / 2 + m"
let ?M = "a * y - q / (2 * a)"
from cubic_root q0 have m0: "m ≠ 0" by auto
from sqrt m0 have a0: "a ≠ 0" by auto
define N where "N = ?N"
define M where "M = ?M"
note powers = field_simps power4_eq_xxxx power3_eq_cube power2_eq_square
from cubic_root have "8*m^3 = - (8 * p) * m^2 - (2 * p^2 - 8 * r) * m + q^2"
by (simp add: powers)
from arg_cong[OF this, of "(*) 4"]
have id: "32 * m^3 = 4 * (- (8 * p) * m^2 - (2 * p^2 - 8 * r) * m + q^2)" by simp
let ?add = "2 * y^2 * m + p * m + m^2"
have "y^4 + p * y^2 + q * y + r = 0 ⟷
(y^2 + p / 2)^2 = -q * y - r + p^2 / 4"
by (simp add: powers, algebra)
also have "… ⟷ (y^2 + p / 2)^2 + ?add = -q * y - r + p^2 / 4 + ?add" by simp
also have "… ⟷ ?N^2 = 2 * m * y^2 - q * y + m^2 + m * p + p^2 / 4 - r"
by (simp add: powers)
also have "2 * m * y^2 - q * y + m^2 + m * p + p^2 / 4 - r =
?M ^ 2" using m0 id a0 sqrt by (simp add: powers, algebra)
also have "?N^2 = ?M^2 ⟷ (?N + ?M) * (?N - ?M) = 0"
unfolding N_def[symmetric] M_def[symmetric] by algebra
also have "… ⟷ ?N + ?M = 0 ∨ ?N - ?M = 0" by simp
also have "?N + ?M = y⇧2 + a * y + b1"
by (simp add: b1)
also have "?N - ?M = y⇧2 - a * y + b2"
by (simp add: b2)
also have "y⇧2 + a * y + b1 = 0 ⟷ poly [:b1,a,1:] y = 0"
by (simp add: powers)
also have "y⇧2 - a * y + b2 = 0 ⟷ poly [:b2,-a,1:] y = 0"
by (simp add: powers)
finally show ?thesis .
qed
end