The truncated tail of a partial sum has uniformly small variance
ProvedMarkovChainCLT.exists_truncation_tail_variance_le_of_exp_alpha_of_log_momentLet be a measurable, centered, strictly stationary real sequence with exponentially decaying strong mixing coefficients, with , and with a finite log-weighted second moment .
For a truncation level write for the recentered high part of . Then the variance of the partial sums of the high parts is uniformly small once the level is high enough: for every there is with
The bound is uniform in after division by , which is what makes the truncation error negligible relative to . Expanding the square, the left-hand side is at most by stationarity, so the assertion is that the bracket tends to as : the first term does so by dominated convergence, and the covariance series does so because the same geometric truncation scheme that makes finite under the log moment applies to the high parts, whose log-weighted second moments vanish as .
import Definitions.Def_MixingCoefficients import Mathlib.Analysis.SpecialFunctions.Log.PosLog open MeasureTheory ProbabilityTheory Filter MarkovChainCLT open scoped ENNReal NNReal Topology ProbabilityTheory
theorem MarkovChainCLT.exists_truncation_tail_variance_le_of_exp_alpha_of_log_moment
{Ω : Type*} [MeasurableSpace Ω]
(P : Measure Ω) [IsProbabilityMeasure P] (Y : ℕ → Ω → ℝ)
(hY : ∀ n, Measurable (Y n)) (hstat : IsStrictlyStationary P Y)
(hcent : ∫ ω, Y 0 ω ∂P = 0)
(c a : ℝ) (ha0 : 0 ≤ a) (ha1 : a < 1)
(hα : ∀ n, alphaMixingCoef P Y n ≤ c * a ^ n)
(hmom : Integrable (fun ω => (Y 0 ω) ^ 2 * Real.posLog |Y 0 ω|) P)
(ε : ℝ) (hε : 0 < ε) :
∃ T : ℝ, 0 < T ∧ ∀ n : ℕ,
∫ ω, (∑ i ∈ Finset.range n,
((if T < |Y i ω| then Y i ω else 0)
- ∫ ω', (if T < |Y 0 ω'| then Y 0 ω' else 0) ∂P)) ^ 2 ∂P ≤ ε * n := by sorry