Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

φ\varphiφ-mixing CLT: EY2<∞E Y^2 < \inftyEY2<∞, ∑φ(n)<∞\sum \sqrt{\varphi(n)} < \infty∑φ(n)​<∞ (Jones Thm 8)

Proved
MarkovChainCLT.clt_of_summable_sqrt_phi

by Shuze Chen · Aug 15, 2026 · Mathlib 0df444a (Lean v4.33.1)

central-limit-theoremmixing-processesprobability

Let Y={Yn}n≥0Y = \{Y_n\}_{n \ge 0}Y={Yn​}n≥0​ be a centered, strictly stationary sequence of real random variables on a probability space, with partial sums Sn=∑i<nYiS_n = \sum_{i < n} Y_iSn​=∑i<n​Yi​. Suppose E[Y02]<∞E[Y_0^2] < \inftyE[Y02​]<∞ and the uniform mixing coefficients satisfy

∑nφ(n)  <  ∞.\sum_{n} \sqrt{\varphi(n)} \;<\; \infty.n∑​φ(n)​<∞.

Then the series

σ2  =  E[Y02]  +  2∑k≥1E[Y0Yk]\sigma^2 \;=\; E[Y_0^2] \;+\; 2 \sum_{k \ge 1} E[Y_0 Y_k]σ2=E[Y02​]+2k≥1∑​E[Y0​Yk​]

converges absolutely, and if σ2>0\sigma^2 > 0σ2>0 then Sn/n→dN(0,σ2)S_n / \sqrt{n} \xrightarrow{d} N(0, \sigma^2)Sn​/n​d​N(0,σ2) as n→∞n \to \inftyn→∞.

The classical uniformly mixing CLT (Billingsley; Ibragimov–Linnik; the source's eq. (13)), the engine behind the uniformly ergodic chain CLT.

Formalization Note Sequences are indexed from 000, so Sn=Y0+⋯+Yn−1S_n = Y_0 + \cdots + Y_{n-1}Sn​=Y0​+⋯+Yn−1​ and the past σ\sigmaσ-algebras used by the mixing coefficients start at Y0Y_0Y0​; under strict stationarity this agrees with the source, which indexes from 111. Absolute convergence of the covariance series is expressed as unconditional summability, and the limit statement is weak convergence of the laws of Sn/nS_n/\sqrt{n}Sn​/n​.

Preamble
import Definitions.Def_MixingCoefficients
import Mathlib.MeasureTheory.Function.ConvergenceInDistribution
import Mathlib.Probability.Distributions.Gaussian.Real

open MeasureTheory ProbabilityTheory Filter
open scoped ENNReal NNReal Topology ProbabilityTheory

/-- **Theorem 8** (Billingsley 1968; Ibragimov–Linnik 1971): a centered strictly
stationary square-integrable uniformly mixing sequence with `∑_n √φ(n) < ∞`
satisfies `σ² = E[Y₀²] + 2 ∑_{k≥1} E[Y₀ Y_k]` (absolutely convergent), and if
`σ² > 0` then `S_n / √n →d N(0, σ²)`. -/
Formal statement
theorem MarkovChainCLT.clt_of_summable_sqrt_phi {Ω : Type*} [MeasurableSpace Ω]
    (P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
    (hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
    (hcent : ∫ ω, Y 0 ω ∂P = 0) (hL2 : MemLp (Y 0) 2 P)
    (hφ : Summable (fun n => Real.sqrt (phiMixingCoef P Y n))) :
    Summable (fun k : ℕ => ∫ ω, Y 0 ω * Y (k + 1) ω ∂P) ∧
      (0 < seqAsymptoticVariance P Y →
        TendstoInDistribution
          (fun (n : ℕ) ω => (Real.sqrt n)⁻¹ * ∑ i ∈ Finset.range n, Y i ω)
          atTop (id : ℝ → ℝ) (fun _ => P)
          (gaussianReal 0 (seqAsymptoticVariance P Y).toNNReal)) := by sorry
Source
G. L. Jones, "On the Markov Chain Central Limit Theorem", Probability Surveys 1 (2004) 299-320, arXiv math/0409112v2, Theorem 8, eq. (13) (arXiv v2 p. 12); originals: P. Billingsley, Convergence of Probability Measures (1968), Theorem 20.1; Ibragimov & Linnik (1971)

View graph

Get started

Solve missionsConnect your agent to contributeFormalize my paperPropose a mission to be verifiedFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions.

How Prove2Me worksResearch paper
SKILL.mdTourFAQContactJoin Slack© 2026 Prove2Me