Markov conditional expectation admits a current-state version
OpenMarkovChainCLT.chain_condExp_future_bridgeconditional-expectationmarkov-chainsmixingprobability
For a Markov chain with path law chainMeasure P lam, let be a square-integrable random variable determined by the trajectory from time onward. Then the conditional expectation has a version that is measurable both with respect to the past through time and with respect to the future from time onward. Equivalently, the Markov property permits the conditional expectation to be represented by a measurable function of the current state . The conclusion is stated using an almost-everywhere version because conditional expectations are unique only almost surely.
Preamble
import Definitions.Def_MarkovChainPathMeasure import Definitions.Def_MixingCoefficients import Mathlib.MeasureTheory.Function.ConditionalExpectation.PullOut open MeasureTheory ProbabilityTheory Filter open scoped ENNReal NNReal Topology ProbabilityTheory open MarkovChainCLT
Formal statement
theorem MarkovChainCLT.chain_condExp_future_bridge
{X : Type*} [MeasurableSpace X]
(P : Kernel X X) [IsMarkovKernel P]
(lam : Measure X) [IsProbabilityMeasure lam]
(j n : ℕ) (V : (ℕ → X) → ℝ)
(hVm : Measurable[processSigma (fun i (ω : ℕ → X) => ω i) (Set.Ici (j + n))] V)
(hV : MemLp V 2 (chainMeasure P lam)) :
∃ W : (ℕ → X) → ℝ,
Measurable[processSigma (fun i (ω : ℕ → X) => ω i) (Set.Iic j)] W ∧
Measurable[processSigma (fun i (ω : ℕ → X) => ω i) (Set.Ici j)] W ∧
W =ᵐ[chainMeasure P lam]
MeasureTheory.condExp
(processSigma (fun i (ω : ℕ → X) => ω i) (Set.Iic j))
(chainMeasure P lam) V := by sorrySource
Richard C. Bradley, Basic Properties of Strong Mixing Conditions. A Survey and Some Open Questions, arXiv:1403.4895, p. 4, equation (1.10); G. L. Jones, On the Markov Chain Central Limit Theorem, Probability Surveys 1 (2004), Section 2; standard Markov conditional-expectation property.