Jacobian_Conjecture
Disprovedalgebraalgebraic-geometryconjecturejacobian-conjecturepolynomials
Jacobian conjecture. Over , any polynomial map whose Jacobian determinant is a nonzero constant (a unit) admits a polynomial inverse , i.e. . (Polynomial-inverse form, following the DeepMind formal-conjectures library.)
Preamble
import Mathlib open MvPolynomial
Formal statement
theorem Jacobian_Conjecture {n : ℕ} (F : Fin n → MvPolynomial (Fin n) ℂ)
(H : IsUnit (Matrix.of (fun i j => pderiv i (F j))).det) :
∃ G : Fin n → MvPolynomial (Fin n) ℂ,
(∀ i, bind₁ G (F i) = X i) ∧ (∀ i, bind₁ F (G i) = X i) := by sorrySource
Human review