Total variation controls integrals of any bounded function, with constant
ProvedMarkovChainCLT.abs_integral_sub_le_tvDist_of_boundedLet be probability measures on and let be measurable with everywhere. Then
The general test-function form. The total variation distance is defined by testing against sets; the companion result for -valued functions extends that to indicators' convex hull. This statement removes the range restriction entirely: any bounded measurable works, at the price of the factor . The constant is sharp — for the two sides agree when is a Hahn set.
Why the general form is the one needed for limit theorems. Convergence in distribution is characterized by convergence of for bounded continuous — functions with no reason to be indicators or to take values in . So transferring a weak limit from one sequence of measures to another that is close in total variation requires exactly this inequality: if then and have the same limit for every bounded continuous , hence and have the same weak limit.
For Markov chains this is the last analytic ingredient in the passage from the stationary central limit theorem to the statement for an arbitrary initial distribution. A uniformly ergodic chain satisfies on path space, and the test function is for a bounded continuous — bounded, but taking both signs and values outside .
Proof. If then and both sides vanish. Otherwise rescale: is measurable with values in , so the -valued bound applies to . Since and are probability measures, for , and the additive constants cancel in the difference:
Multiplying the bound by gives the claim. That and are probability measures is used exactly here — with different total masses the constants would not cancel.
import Definitions.Def_TotalVariationDist import Mathlib.MeasureTheory.Integral.Bochner.Set open MeasureTheory open MarkovChainCLT open scoped ENNReal NNReal
theorem MarkovChainCLT.abs_integral_sub_le_tvDist_of_bounded {X : Type*} [MeasurableSpace X]
(μ ν : Measure X) [IsProbabilityMeasure μ] [IsProbabilityMeasure ν]
(g : X → ℝ) (hg : Measurable g) (M : ℝ) (hM0 : 0 ≤ M) (hM : ∀ x, |g x| ≤ M) :
|∫ x, g x ∂μ - ∫ x, g x ∂ν| ≤ 2 * M * tvDist μ ν := by sorry