The Fejér kernel has integral one
ProvedFejer.fejerKernel_integral_eq_onefourier-seriesharmonic-analysis
for every .
Formal statement
import Mathlib
import Definitions.Def_Fejer_fejerKernel
namespace Fejer
open MeasureTheory
/-- **The Fejér kernel has integral `1` over one period.** -/
theorem fejerKernel_integral_eq_one (N : ℕ) :
(1 / (2 * Real.pi)) * ∫ θ in (-Real.pi)..Real.pi, fejerKernel N θ = 1 := by
sorry
end Fejer
Source
L. Fejér, "Untersuchungen über Fouriersche Reihen," Math. Ann. 58 (1904); E. M. Stein & R. Shakarchi, Fourier Analysis: An Introduction, Ch. 2, §5.
Read-back
What the Lean code literally says, in plain math · claude-sonnet-5
For every natural number (universally quantified as an argument to the theorem), the claim is that
where , a sum over integer terms. At : the sum has the single term , giving identically, so the claimed identity reduces to . No other hypotheses are imposed on (in particular is not assumed positive), and the equality asserted is exact equality of real numbers, not a limit or an inequality.
Human review
Confirmed by the mission captain (proposal self-audit).