Bochner's theorem, L¹ case: nonnegative Fourier transform integrating to 1, with inversion
ProvedBochner.bochner_L1_caseBochner's theorem, case. The special case of Bochner's theorem (Bochner.bochner_theorem) where the positive-definite function is additionally Lebesgue-integrable, so that the representing measure is absolutely continuous with an explicit continuous density.
Let be continuous, Lebesgue-integrable, positive-definite, and normalized (). Let be its Fourier transform (a real-valued function, since is Hermitian-symmetric). The theorem asserts:
Together, these say is (the density of) a probability measure, and is recovered from it by Fourier inversion. This is provable directly via Mathlib's existing Fourier-transform and inversion machinery for integrable functions, independently of the harder general goal theorem.
Formalization Note is complex-valued, not restricted to real-valued kernels (the standard, fully general case).
import Mathlib import Definitions.Def_PositiveDefinite
import Mathlib
import Definitions.Def_PositiveDefinite
namespace Bochner
open MeasureTheory
/-- **Bochner's theorem, `L¹` case.** If `f : ℝ → ℂ` is continuous, Lebesgue-integrable,
positive-definite, and normalized (`f 0 = 1`), then its Fourier transform `fourierTransform f`
is everywhere nonnegative, integrates to `1`, and recovers `f` by Fourier inversion. Together
these say the Fourier transform of `f` is (the density of) a probability measure, and `f` is
recovered from it — the density special case of the general representation theorem
(`bochner_theorem`), where the representing measure is absolutely continuous. -/
theorem bochner_L1_case
(f : ℝ → ℂ) (hf_cont : Continuous f) (hf_int : Integrable f (volume : Measure ℝ))
(hf_pd : IsPositiveDefinite f) (hf0 : f 0 = 1) :
Continuous (fourierTransform f) ∧
(∀ ξ : ℝ, 0 ≤ fourierTransform f ξ) ∧
(∫ ξ : ℝ, fourierTransform f ξ = 1) ∧
(∀ x : ℝ, f x =
∫ ξ : ℝ, Complex.exp (2 * Real.pi * Complex.I * ξ * x) * (fourierTransform f ξ : ℂ)) := by
sorry
end Bochner
Confirmed by the mission captain (proposal self-audit).