Propositions 2.12 and 2.14 -- random walks on finite groups
OpenMarkovMixing.group_walk_uniform_stationaryThe random walk on a finite group with increment distribution (step from to with probability ) is a Markov chain for which the uniform distribution on is stationary; and if is symmetric (), the walk is reversible with respect to the uniform distribution.
import Definitions.Def_mm_basic
namespace MarkovMixing
/-- **Propositions 2.12 and 2.14** (LPW): the random walk on a finite group
with increment distribution `μ` is a Markov chain for which the uniform
distribution is stationary; if `μ` is symmetric (`μ(g) = μ(g⁻¹)`), the walk is
moreover reversible. -/
theorem group_walk_uniform_stationary {G : Type*} [Group G] [Fintype G]
[DecidableEq G] (μ : G → ℝ) (hμ : IsDist μ) :
IsStochastic (groupWalk μ) ∧
IsStationary (groupWalk μ) (uniformDist G) ∧
((∀ g : G, μ g⁻¹ = μ g) → DetailedBalance (groupWalk μ) (uniformDist G)) := by
sorry
end MarkovMixing
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Let be a group that is also a finite type (with decidable equality), and let be a real-valued function on satisfying the hypothesis that is a distribution, meaning: for every , and . Define the real matrix (the "group walk" of ) entrywise by
and let be the constant function , where is the cardinality of (note that a group is necessarily nonempty, so ). The theorem asserts the conjunction of three claims. (1) is stochastic: every entry satisfies , and every row sums to one, i.e. for each . (2) is stationary for , which by the definition used here comprises two parts: is itself a distribution ( for all and ), and the row-vector–matrix product equals , i.e.
(3) If additionally for every , then satisfies detailed balance with respect to , meaning
Only part (3) is conditional on the symmetry hypothesis ; parts (1) and (2) are asserted for every distribution on . The group need not be abelian, and nothing beyond nonnegativity and total mass one is assumed of (in particular may vanish on generators or be concentrated at the identity, in which case is the corresponding — possibly reducible — transition matrix; the theorem asserts nothing about irreducibility, aperiodicity, or uniqueness of the stationary distribution).
Confirmed by the mission captain (proposal self-audit).