Cesàro mean as convolution with the Fejér kernel
ProvedFejer.cesaroMean_eq_convolutionFor continuous and -periodic, .
import Mathlib
import Definitions.Def_Fejer_cesaroMean
import Definitions.Def_Fejer_fejerKernel
namespace Fejer
open MeasureTheory
/-- **The Cesàro mean is convolution with the Fejér kernel.** For `f : ℝ → ℂ` continuous and
`2π`-periodic,
`σ_N(f)(θ) = (1/2π) ∫_{-π}^{π} f(θ - φ) F_N(φ) dφ`. -/
theorem cesaroMean_eq_convolution
(f : ℝ → ℂ) (hf_cont : Continuous f) (hf_per : Function.Periodic f (2 * Real.pi))
(N : ℕ) (θ : ℝ) :
cesaroMean f N θ =
(1 / (2 * Real.pi)) * ∫ φ in (-Real.pi)..Real.pi, f (θ - φ) * (fejerKernel N φ : ℂ) := by
sorry
end Fejer
Read-back
What the Lean code literally says, in plain math · claude-sonnet-5
The statement is universally quantified over: a function ; a hypothesis hf_cont that is continuous everywhere; a hypothesis hf_per that is periodic with period , spelled out as ; a natural number (including ); and a real number (unrestricted). Under exactly these hypotheses, the theorem asserts a single equality of complex numbers.
Unfolding definitions: fourierCoeff f n is (Lean's total interval integral, junk value if not integrable). partialSum f k θ is over the integers . cesaroMean f N θ is , a sum over (well-defined division since ). At this reduces to .
Separately, fejerKernel N φ is the real number ; at , for every .
The conclusion is the equation
where (real) is coerced into before being multiplied by . No claim is made about any limit as , about uniform or pointwise convergence, about positivity or normalization of , or about any property of beyond continuity and exact -periodicity as stated.
Confirmed by the mission captain (proposal self-audit).