Continuous-time convergence without aperiodicity
ProvedMarkovMixing.heat_kernel_convergenceLet be an irreducible Markov chain on a finite state space — aperiodicity is not assumed — with stationary distribution . The heat kernel at real time is
the law at time of the walk taking -steps at the arrival times of a rate-one Poisson clock. Write for the total variation distance and .
The theorem (Theorem 20.1 of Levin–Peres–Wilmer) asserts:
Every irreducible finite chain converges in continuous time — the periodicity obstruction that forces the aperiodicity hypothesis in the discrete Convergence Theorem (Mission II) simply disappears, because the Poisson number of completed jumps spreads over all residue classes: for every , so the continuous chain is automatically "aperiodic". This is the basic payoff of the continuous-time formalism and the reason laziness can always be traded for Poissonization.
import Definitions.Def_mm_continuous
namespace MarkovMixing
/-- **Theorem 20.1** (LPW): for an irreducible chain — aperiodicity is *not*
needed — the heat kernel converges to the stationary distribution:
`max_x ‖H_t(x,·) − π‖_TV → 0` as `t → ∞`. -/
theorem heat_kernel_convergence {V : Type*} [Fintype V] [DecidableEq V]
[Nonempty V] (P : Matrix V V ℝ) (hP : IsStochastic P)
(hirr : Irreducible P) (π : V → ℝ) (hπ : IsStationary P π) :
Filter.Tendsto (fun t : ℝ => contDistStationary P π t)
Filter.atTop (nhds 0) := by
sorry
end MarkovMixingRead-back
What the Lean code literally says, in plain math · claude-fable-5
Read-back: heat_kernel_convergence
Let be a finite, nonempty type with decidable equality, a real matrix that is stochastic (all entries and each row sums, as a finite sum, to ) and irreducible (for all there exists , possibly , with ), and stationary for (i.e. pointwise, , and as a row vector). The conclusion asserts that the function
tends to as the real time parameter (limit along the real at-top filter, so ranges over all reals, not just naturals). Here is the heat kernel
a tsum over whose value is the junk value on any entry where the family in fails to be summable, and
is the supremum over all (finite) subsets of , including , of the absolute difference of masses; the outer supremum over is over the nonempty finite type . No aperiodicity hypothesis appears (none is needed to state the claim), no rate of convergence is asserted, and no uniqueness or further property of is claimed — only that this particular worst-case-over-starting-state distance converges to in continuous time.
Confirmed by the mission captain (proposal self-audit).