Centered event indicator in real
DefinitionMarkovChainCLT_centeredIndicatorLpcenteringindicatorl2markov-chain
For a probability measure and a measurable event , centeredIndicatorLp pi A hA is the real equivalence class of . It is the standard dense-core generator used in the spectral analysis of stationary Markov operators.
Definition code
import Mathlib.MeasureTheory.Function.LpSpace.Indicator
open MeasureTheory
namespace MarkovChainCLT
/-- The centered indicator of a measurable set, viewed as an element of real `L²`. -/
noncomputable def centeredIndicatorLp
{X : Type*} [MeasurableSpace X]
(pi : Measure X) [IsProbabilityMeasure pi]
(A : Set X) (hA : MeasurableSet A) : Lp ℝ 2 pi :=
indicatorConstLp 2 hA (measure_ne_top pi A) (1 : ℝ) -
Lp.const 2 pi (pi.real A)
end MarkovChainCLTSource
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.