Lemma 1.13 -- expected hitting times of an irreducible chain are finite
OpenMarkovMixing.summable_hitting_tailsFor an irreducible chain and any states , the expected first hitting time is finite. Formally: the tail probabilities , expressed as finite sums of trajectory weights, form a summable family in -- their sum being the expectation by the tail-sum formula .
import Definitions.Def_mm_path
namespace MarkovMixing
/-- **Lemma 1.13** (LPW): for an irreducible chain, `E_x(τ⁺_z) < ∞` for all
states `x, z` — formalized as summability of the tail probabilities
`P_x{τ⁺_z > t}`, whose sum is the expectation. -/
theorem summable_hitting_tails {V : Type*} [Fintype V] [DecidableEq V]
(P : Matrix V V ℝ) (hP : IsStochastic P) (hirr : Irreducible P) (x z : V) :
Summable (fun t : ℕ => avoidTailProb P x z t) := by
sorry
end MarkovMixing
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Let be an arbitrary finite type (with decidable equality), and let be a matrix of real numbers that is assumed stochastic — meaning every entry satisfies and every row sums to one, — and irreducible in the following sense: for every pair of states there exists a natural number (with allowed, where is the identity matrix) such that the entry of the matrix power is strictly positive. Fix two states (which forces to be nonempty; is allowed). For each define the real number
i.e. is the finite sum, over all functions from to , of the path weight , restricted to those that start at and avoid at every index from to (the starting point is not required to differ from ); probabilistically, is the probability that the chain started at has not visited at any of the times . Note the degenerate case : the avoidance condition is vacuous and the path weight is an empty product, so . The theorem asserts (with proof currently omitted, i.e. the statement carries a sorry) that under these hypotheses the sequence is summable: the series converges (in the standard sense of unconditional/absolute convergence of a family of reals). No claim is made about the value of the sum, its finiteness bound, or any relation to hitting times; only convergence of this series is asserted.
Confirmed by the mission captain (proposal self-audit).