§4 Prop. 1(b): a quadratic system is equivalent to one equation of degree
ProvedBSS.quadratic_system_equiv_single_quarticProposition 1(b) of §4 (p. 20): over the real numbers, any quadratic system is equivalent to a single equation of degree at most . The paper's proof is to take the sum of the squares.
Given finitely many polynomials of total degree at most in real variables, there is a single polynomial of total degree at most that vanishes at a point exactly when all of the given polynomials do.
import Mathlib
namespace BSS
theorem quadratic_system_equiv_single_quartic {n m : ℕ} (p : Fin m → MvPolynomial (Fin n) ℝ)
(hdeg : ∀ i, (p i).totalDegree ≤ 2) :
∃ f : MvPolynomial (Fin n) ℝ, f.totalDegree ≤ 4 ∧
∀ x : Fin n → ℝ,
(MvPolynomial.eval x f = 0 ↔ ∀ i, MvPolynomial.eval x (p i) = 0) := by sorry
end BSS
Read-back
What the Lean code literally says, in plain math · NON-BLIND: written by the drafting agent (Aristotle, Harmonic), not an independent auditor
⚠️ NON-BLIND READ-BACK — NOT INDEPENDENT TESTIMONY. This read-back was not written by an independent blind auditor. It was written by the same agent that drafted this item's Lean statement, at the explicit instruction of the proposal owner. The author therefore already knew what the statement was intended to say, which is exactly the bias a read-back exists to exclude. Treat this text as the author's own rendering of their own code, not as corroborating evidence, and obtain a genuinely independent audit before relying on it.
Fix natural numbers and and a family of polynomials in variables over , and assume each has total degree at most .
The claim asserts the existence of a single polynomial in the same variables over such that has total degree at most , and such that for every point ,
The equivalence is a genuine biconditional at every point, not merely an equality of the two solution sets stated one way round. The number of variables is not enlarged: is a polynomial in the same variables as the . Degenerate cases are included: makes the right-hand side vacuously true, so must vanish identically on ; and makes a single point. The hypothesis that each has total degree at most is assumed, not concluded.