Gaussian limits of L¹-close sequences have close variances
ProvedMarkovChainCLT.abs_exp_variance_sub_le_of_tendstoInDistributionTwo sequences that stay -close cannot have Gaussian limits with distant variances. Suppose and , and that for every . Then
Discussion. Weak convergence is not metrized by distance, so no bound on can be read off directly; but a single bounded Lipschitz test function is enough. Take : it is -Lipschitz and bounded, so
and both sides converge, by the portmanteau theorem, to the corresponding Gaussian integrals. Since , the claim follows by passing to the limit in a non-strict inequality.
Where this is used. In the Markov chain central limit theorem for an observable one truncates at level , applies the bounded-observable theorem to obtain , and needs to converge. The variance bound for partial sums gives uniformly in , so this lemma makes Cauchy; together with a uniform upper bound on the map is bi-Lipschitz on the relevant range, so itself is Cauchy.
Proof. Package as a bounded continuous function, use the portmanteau characterisation of weak convergence contained in TendstoInDistribution to get and likewise for ; bound by using linearity, the triangle inequality for integrals, monotonicity, and the Lipschitz bound for ; then take limits.
import Mathlib.MeasureTheory.Function.ConvergenceInDistribution import Mathlib.Probability.Distributions.Gaussian.Real import Mathlib.MeasureTheory.Integral.Bochner.Set import Mathlib.Analysis.SpecialFunctions.Trigonometric.Bounds open Filter MeasureTheory ProbabilityTheory open scoped ENNReal NNReal Topology
theorem MarkovChainCLT.abs_exp_variance_sub_le_of_tendstoInDistribution {Ω : Type*}
[MeasurableSpace Ω] (μ : Measure Ω) [IsProbabilityMeasure μ]
(Y Z : ℕ → Ω → ℝ) (v w : ℝ≥0) (ε : ℝ)
(hY : ∀ n, Measurable (Y n)) (hZ : ∀ n, Measurable (Z n))
(hcY : TendstoInDistribution Y atTop (id : ℝ → ℝ) (fun _ => μ) (gaussianReal 0 v))
(hcZ : TendstoInDistribution Z atTop (id : ℝ → ℝ) (fun _ => μ) (gaussianReal 0 w))
(hint : ∀ n, Integrable (fun ω => |Y n ω - Z n ω|) μ)
(hdiff : ∀ n, ∫ ω, |Y n ω - Z n ω| ∂μ ≤ ε) :
|Real.exp (-(v : ℝ) / 2) - Real.exp (-(w : ℝ) / 2)| ≤ ε := by sorry