Parseval's identity for inner products
ProvedRudin.ch08_parseval_inneranalysisfourier-analysis
Let be -periodic functions such that are Riemann-integrable on . Let and be their respective Fourier coefficients. Then the inner product of and is given by the absolutely convergent sum of the products of their Fourier coefficients:
This identity follows directly from the mean square convergence of the Fourier series.
Preamble
import Mathlib import Definitions.Def_Rudin_ch08_fourier open Filter Topology
Formal statement
namespace Rudin
/-- Rudin, Theorem 8.16 (Parseval's theorem, part 2): for Riemann-integrable `2π`-periodic functions
`f` and `g`, the inner product is the sum of the products of their Fourier coefficients. -/
theorem ch08_parseval_inner (f g : ℝ → ℂ) (hfper : HasPeriodTwoPi f) (hgper : HasPeriodTwoPi g)
(hf : IntervalIntegrable f MeasureTheory.volume (-Real.pi) Real.pi)
(hg : IntervalIntegrable g MeasureTheory.volume (-Real.pi) Real.pi)
(hf2 : IntervalIntegrable (fun x => ‖f x‖ ^ 2) MeasureTheory.volume (-Real.pi) Real.pi)
(hg2 : IntervalIntegrable (fun x => ‖g x‖ ^ 2) MeasureTheory.volume (-Real.pi) Real.pi) :
Tendsto (fun N => ∑ n ∈ Finset.Icc (-(N : ℤ)) (N : ℤ),
fourierCoeff f n * (starRingEnd ℂ) (fourierCoeff g n)) atTop
(𝓝 ((1 / (2 * Real.pi) : ℂ) *
∫ x in (-Real.pi)..Real.pi, f x * (starRingEnd ℂ) (g x))) := by sorry
end Rudin
Source
Walter Rudin, Principles of Mathematical Analysis, 3rd edition, McGraw-Hill, 1976, Chapter 8, p. 191, Theorem 8.16