Per-level mixing estimate for a weighted indicator
ProvedMarkovChainCLT.alphaPair_indicator_boundPer-level mixing estimate: a weighted event-vs-expectation gap.
Let be a probability space and let be sub--algebras of . Take an event and a random variable that is -measurable, non-negative and bounded by . Then
where is the pair-level strong mixing coefficient alphaPair.
Why this is the right level of generality. Writing does not help on its own; the estimate above is the level-set statement from which the bounded covariance inequality for , follows by integrating in (Tonelli), and hence the Ibragimov-type decay estimate for unbounded variables via truncation.
Proof method. Layer-cake (tail formula) applied to the two bounded non-negative measurable functions and on the same interval , followed by a single combination of the resulting integrals over ; the level sets satisfy
so each level contributes at most by the definition of alphaPair, and the
-integral of that constant over is exactly .
Formalization note. The sub--algebra inclusions are explicit hypotheses: without them the level sets of need not be measurable for , and the layer-cake identity fails. The bound is stated pointwise (not merely a.e.) so that no completion of the measure is needed; the constant multiplies linearly, which is what the downstream truncation argument requires.
import Definitions.Def_AlphaPair open MeasureTheory ProbabilityTheory MarkovChainCLT
theorem MarkovChainCLT.alphaPair_indicator_bound {Ω : Type*} [hΩ : MeasurableSpace Ω]
{P : Measure Ω} [hP : IsProbabilityMeasure P]
(A B : MeasurableSpace Ω) (hA : A ≤ hΩ) (hB : B ≤ hΩ)
(C : Set Ω) (hC : @MeasurableSet Ω A C)
(V : Ω → ℝ) (hVm : Measurable[B] V) {T : ℝ} (hT : 0 ≤ T)
(hVnn : ∀ ω, 0 ≤ V ω) (hVb : ∀ ω, V ω ≤ T) :
|(∫ ω, V ω * Set.indicator C (fun _ => (1 : ℝ)) ω ∂P) -
(P C).toReal * (∫ ω, V ω ∂P)| ≤
T * @alphaPair Ω hΩ P A B := by sorry