Event-level strong mixing coefficient between two sub-σ-algebras
DefinitionAlphaPairLet be a probability space and let be sub--algebras of . Define the event-level strong mixing coefficient between and by
This is the pair-level quantity that underlies the strong mixing coefficients of a sequence of random variables (Definition 1 of Jones, On the Markov chain central limit theorem, 2004): for the past -algebra and future -algebra one has . It is the natural hypothesis for covariance inequalities of Ionescu–Tulcea / Ibragimov type, which bound the covariance of two random variables measurable with respect to and in terms of and their moments.
Formalization Note The supremum is taken over a set of real numbers built from the extended-real measures via ENNReal.toReal; for a probability measure each term lies in , so the set is bounded above and the supremum is well-defined.
import Definitions.Def_MixingCoefficients
/-!
Event-level strong mixing coefficient between two sub-σ-algebras of `Ω`.
For sub-σ-algebras `A`, `B` of a probability space `(Ω, P)`,
$$\\alpha(A,B)=\\sup\\{|P(C\\cap D)-P(C)P(D)| : C\\in A,\\ D\\in B\\}.$$
This is the pair-level quantity underlying the strong mixing coefficient
`alphaMixingCoef` of a sequence (Definition 1 of Jones 2004), and is the natural
hypothesis for covariance inequalities such as Ionescu–Tulcea's.
-/
open MeasureTheory ProbabilityTheory
namespace MarkovChainCLT
/-- The strong mixing coefficient between two sub-σ-algebras `A` and `B`. -/
noncomputable def alphaPair {Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) (A B : MeasurableSpace Ω) : ℝ :=
sSup {r | ∃ C D : Set Ω, MeasurableSet[A] C ∧ MeasurableSet[B] D ∧
r = |((P (C ∩ D)).toReal : ℝ) - (P C).toReal * (P D).toReal|}
end MarkovChainCLT