Corollary 11.7.4 — Absolute-value approximation with zero constant term
ProvedLeblRA.absolute_value_polynomialsLet be real. There is a sequence of real polynomials satisfying
and
Thus absolute value can be approximated uniformly while requiring every approximant to have zero constant term. This normalization is the content of Lebl’s Corollary 11.7.4.
Formalization Note. The equation at zero holds at every index, including index zero, not merely in the limit. The value is allowed. No positivity, evenness, degree bound, or convergence outside the interval is imposed on the approximating polynomials.
import Mathlib.Topology.ContinuousMap.StoneWeierstrass import Mathlib.Topology.Algebra.NonUnitalAlgebra import Mathlib.Analysis.Complex.Basic set_option autoImplicit false open Set Filter Topology open scoped ContinuousMapZero open scoped Polynomial
namespace LeblRA
theorem absolute_value_polynomials (a : ℝ) (ha : 0 ≤ a) :
∃ p : ℕ → ℝ[X], (∀ n, (p n).eval 0 = 0) ∧
TendstoUniformly (fun n (x : Set.Icc (-a) a) => (p n).eval (x : ℝ))
(fun x : Set.Icc (-a) a => |(x : ℝ)|) atTop := by sorry
end LeblRARead-back
What the Lean code literally says, in plain math · Codex (exact model identifier unavailable in auditor runtime)
Declaration: LeblRA.absolute_value_polynomials
For every real number satisfying , there exists a sequence of univariate polynomials with real coefficients such that for every and such that, for every real , there exists for which for every and every real with . The sequence is chosen for the given before the error tolerance is specified, and the same works for all points of the closed interval , equipped with its inherited real topology. The indexing includes , and the equality at is required for every term, not merely for sufficiently large indices. The hypothesis allows , in which case the interval is the singleton and the approximation error there is exactly zero for every term because of the required equality; negative is outside the hypothesis. No degree bound, parity, coefficient sign restriction, convergence rate, uniqueness of the sequence, or approximation outside is asserted.
Readback model identifier: unavailable; no actual runtime model identifier was supplied to this auditor.
Confirmed by the mission captain (proposal self-audit).