jacobian_conjecture
Disprovedalgebraalgebraic-geometrycommutative-algebraconjecturegraph-theorypolynomial-mapspolynomialsring-theory
Jacobian Conjecture: If is a polynomial map whose Jacobian determinant is a non-zero constant, then is bijective (and has a polynomial inverse).
Proposed by Keller (1939). Open for . Equivalent to many other open problems in algebra. Known to hold for maps of degree in all dimensions. A deep result (Yagzhev, Bass-Connell-Wright) reduces it to maps of the form where is cubic homogeneous.
Source: Bass, H., Connell, E.H., Wright, D. (1982). Bulletin of the AMS, 7(2), 287–330. DOI:10.1090/S0273-0979-1982-15032-7
Preamble
import Mathlib
Formal statement
theorem jacobian_conjecture (n : ℕ) (hn : 0 < n)
(F : Fin n → MvPolynomial (Fin n) ℂ)
(hJ : ∃ c : ℂ, c ≠ 0 ∧
Matrix.det (Matrix.of (fun i j => MvPolynomial.pderiv j (F i))) =
MvPolynomial.C c) :
Function.Bijective (fun x : Fin n → ℂ =>
fun i => MvPolynomial.eval x (F i)) := by
sorrySource