Parseval's theorem, mean square convergence
ProvedRudin.ch08_parseval_L2_convanalysisfourier-analysis
Let be a -periodic function such that and are Riemann-integrable on . Let be the -th partial sum of the Fourier series of , and let be the norm. Then the Fourier series of converges to in the mean square sense:
This is the completeness statement for the trigonometric system, relying on the fact that continuous periodic functions can be uniformly approximated by trigonometric polynomials (Theorem 8.15).
Preamble
import Mathlib import Definitions.Def_Rudin_ch08_fourier open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 8.16 (Parseval's theorem, part 1): the Fourier series of a Riemann-integrable
`2π`-periodic function `f` converges to `f` in the mean square sense. -/
theorem ch08_parseval_L2_conv (f : ℝ → ℂ) (hfper : HasPeriodTwoPi f)
(hf : IntervalIntegrable f MeasureTheory.volume (-Real.pi) Real.pi)
(hf2 : IntervalIntegrable (fun x => ‖f x‖ ^ 2) MeasureTheory.volume (-Real.pi) Real.pi) :
Tendsto (fun N => L2Norm (fun x => f x - fourierPartialSum f N x)) atTop (𝓝 0) := by sorry
end Rudin
Source
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, pp. 190-191, Theorem 8.16