Theorem 8.15 — uniform approximation by trigonometric polynomials
ProvedRudin.ch08_trig_approximationanalysisapproximationfourier-analysis
If is continuous with period and , there is a trigonometric polynomial with for all real .
Preamble
import Mathlib import Definitions.Def_Rudin_ch08_fourier open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 8.15: a continuous `2π`-periodic function can be uniformly approximated by
trigonometric polynomials. -/
theorem ch08_trig_approximation (f : ℝ → ℂ) (hcont : Continuous f) (hper : HasPeriodTwoPi f)
(ε : ℝ) (hε : 0 < ε) :
∃ P : ℝ → ℂ, IsTrigPolynomial P ∧ ∀ x : ℝ, ‖P x - f x‖ < ε := by sorry
end RudinSource
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, p. 190, Theorem 8.15
Read-back
What the Lean code literally says, in plain math · Aristotle (Harmonic)
Let be continuous on all of and satisfy for every real , and let . Then there exists a function which is a trigonometric polynomial — that is, for some and coefficients one has for all real — such that
The approximation is uniform over the whole real line (equivalently, over one period), with a strict inequality, and may depend on .
Human review
Confirmed by the mission captain (proposal self-audit).