The centered operator of a stationary reversible Markov chain
OpenMarkovChainCLT.stationary_reversible_centered_L2_operatorl2markov-operatormaximal-correlationreversibility
Let preserve the probability law and be reversible with respect to it. Then the stationary chain has a bounded centered Markov operator on real . It is self-adjoint, kills constants, and dominates the one-step maximal correlation through
For every measurable event , the power moments of its centered indicator are exactly the stationary event correlations:
The operator can be constructed from the coordinate- and coordinate- isometric embeddings into the path-space space and their Hilbert adjoints; the Markov property gives the power identity, while reversibility gives self-adjointness.
Preamble
import Definitions.Def_MarkovErgodicity import Definitions.Def_MarkovChainPathMeasure import Definitions.Def_MixingCoefficients import Definitions.Def_MarkovChainCLT_centeredIndicatorLp import Mathlib.Analysis.InnerProductSpace.Adjoint open MeasureTheory ProbabilityTheory Filter Set open scoped ENNReal NNReal Topology ProbabilityTheory open MarkovChainCLT
Formal statement
theorem MarkovChainCLT.stationary_reversible_centered_L2_operator
{X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P]
(pi : Measure X) [IsProbabilityMeasure pi]
(hinv : Kernel.Invariant P pi)
(hrev : Kernel.IsReversible P pi) :
∃ K : Lp ℝ 2 pi →L[ℝ] Lp ℝ 2 pi,
(K : Lp ℝ 2 pi →ₗ[ℝ] Lp ℝ 2 pi).IsSymmetric ∧
K (Lp.const 2 pi (1 : ℝ)) = 0 ∧
0 ≤ rhoMixingCoef (chainMeasure P pi) (fun i omega => omega i) 1 ∧
(rhoMixingCoef (chainMeasure P pi) (fun i omega => omega i) 1) ^ 2 ≤ ‖K ^ 2‖ ∧
∀ (A : Set X) (hA : MeasurableSet A) (m : ℕ),
inner ℝ ((K ^ m) (centeredIndicatorLp pi A hA))
(centeredIndicatorLp pi A hA) =
∫ x,
((A.indicator (fun _ => (1 : ℝ))) x - pi.real A) *
(((iterKernel P m) x A).toReal - pi.real A) ∂pi := 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; Richard C. Bradley, On Mixing Properties of Reversible Markov Chains, arXiv:1403.4895v1, p. 4, eq. (1.10), https://arxiv.org/abs/1403.4895.