Centered-indicator power decay extends to a dense core
ProvedMarkovChainCLT.centered_indicator_decay_extends_to_dense_L2_coredense-subspacel2simple-functionsspectral-decay
Let be a self-adjoint bounded operator on real which annihilates constants. Suppose every centered event indicator has the uniform even-power estimate
Then there is a dense linear core (the integrable simple functions) such that each has a constant with
The proof decomposes simple functions over finitely many disjoint measurable atoms. Centering removes their constant component, and polarization plus the indicator estimate controls all finitely many cross terms. Density is the standard density of simple functions in .
Preamble
import Definitions.Def_MarkovChainCLT_centeredIndicatorLp import Mathlib.MeasureTheory.Function.SimpleFuncDenseLp import Mathlib.MeasureTheory.Function.L2Space import Mathlib.Analysis.InnerProductSpace.Adjoint open MeasureTheory Filter Set open scoped ENNReal NNReal Topology open MarkovChainCLT
Formal statement
theorem MarkovChainCLT.centered_indicator_decay_extends_to_dense_L2_core
{X : Type*} [MeasurableSpace X]
(pi : Measure X) [IsProbabilityMeasure pi]
(K : Lp ℝ 2 pi →L[ℝ] Lp ℝ 2 pi)
(hKsym : (K : Lp ℝ 2 pi →ₗ[ℝ] Lp ℝ 2 pi).IsSymmetric)
(hKone : K (Lp.const 2 pi (1 : ℝ)) = 0)
(t C : ℝ) (ht : 0 ≤ t) (hC : 0 ≤ C)
(hdiag : ∀ (A : Set X) (hA : MeasurableSet A) (n : ℕ), 1 ≤ n →
|inner ℝ ((K ^ (2 * n)) (centeredIndicatorLp pi A hA))
(centeredIndicatorLp pi A hA)| ≤ C * t ^ (2 * n)) :
∃ D : Submodule ℝ (Lp ℝ 2 pi), Dense (D : Set (Lp ℝ 2 pi)) ∧
∀ z : D, ∃ Cz : ℝ, 0 ≤ Cz ∧
∀ n : ℕ, |inner ℝ (((K ^ 2) ^ n) (z : Lp ℝ 2 pi))
(z : Lp ℝ 2 pi)| ≤ Cz * (t ^ 2) ^ n := by sorrySource
G. O. Roberts and J. S. Rosenthal, Geometric Ergodicity and Hybrid Markov Chains, Electronic Communications in Probability 2 (1997), proof of Theorem 2, pp. 7-9, https://www.probability.ca/jeff/ftpdir/hybrid.pdf; the dense-simple-function and polarization step is the standard extension of the displayed-set calculation in that proof.