Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Strongly mixing stationary sequences: CLT   ⟺  \iff⟺{Sn2/σn2}\{S_n^2/\sigma_n^2\}{Sn2​/σn2​} uniformly integrable (Jones Thm 3)

Proved
MarkovChainCLT.clt_iff_uniformlyIntegrable_of_alpha_mixing

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​ and σn2=E[Sn2]\sigma_n^2 = E[S_n^2]σn2​=E[Sn2​]. Suppose E[Y02]<∞E[Y_0^2] < \inftyE[Y02​]<∞, the sequence is strongly mixing (α(n)→0\alpha(n) \to 0α(n)→0), and σn2→∞\sigma_n^2 \to \inftyσn2​→∞. Then the following are equivalent:

Snσn→dN(0,1)⟺{Sn2σn2:n≥1} is uniformly integrable.\frac{S_n}{\sigma_n} \xrightarrow{d} N(0, 1) \qquad \Longleftrightarrow \qquad \Bigl\{ \frac{S_n^2}{\sigma_n^2} : n \ge 1 \Bigr\} \text{ is uniformly integrable.}σn​Sn​​d​N(0,1)⟺{σn2​Sn2​​:n≥1} is uniformly integrable.

This characterization (Cogburn; Denker; Mori–Yoshihara) explains exactly what can fail for dependent sequences with second moments: the CLT is equivalent to uniform integrability of the normalized squares, not implied by moments alone.

Formalization Note For the (finitely many) indices with σn=0\sigma_n = 0σn​=0 the normalized quantities are interpreted as 000. 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
import Mathlib.MeasureTheory.Function.UniformIntegrable

open MeasureTheory ProbabilityTheory Filter
open scoped ENNReal NNReal Topology ProbabilityTheory

/-- **Theorem 3** (Cogburn 1960; Denker 1986; Mori–Yoshihara 1986): for a centered
strictly stationary strongly mixing square-integrable sequence with
`σ_n² = E[S_n²] → ∞`, the normalized sums `S_n / σ_n` converge in distribution to
`N(0,1)` **iff** the family `{S_n² / σ_n²}` is uniformly integrable. -/
Formal statement
theorem MarkovChainCLT.clt_iff_uniformlyIntegrable_of_alpha_mixing {Ω : 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)
    (hmix : Tendsto (fun n => alphaMixingCoef P Y n) atTop (𝓝 0))
    (hvar : Tendsto (fun n => ∫ ω, (∑ i ∈ Finset.range n, Y i ω) ^ 2 ∂P) atTop atTop) :
    TendstoInDistribution
        (fun (n : ℕ) ω => (∑ i ∈ Finset.range n, Y i ω)
          / Real.sqrt (∫ ω', (∑ i ∈ Finset.range n, Y i ω') ^ 2 ∂P))
        atTop (id : ℝ → ℝ) (fun _ => P) (gaussianReal 0 1)
      ↔ UniformIntegrable
          (fun (n : ℕ) ω => (∑ i ∈ Finset.range n, Y i ω) ^ 2
            / ∫ ω', (∑ i ∈ Finset.range n, Y i ω') ^ 2 ∂P) 1 P := by sorry
Source
G. L. Jones, "On the Markov Chain Central Limit Theorem", Probability Surveys 1 (2004) 299-320, arXiv math/0409112v2, Theorem 3 (arXiv v2 p. 9); originals: R. Cogburn (1960), M. Denker (1986), T. Mori & K. Yoshihara (1986)

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