Proposition 1.7 -- a positive power of an irreducible aperiodic chain
OpenMarkovMixing.exists_pow_posIf the stochastic matrix is irreducible and aperiodic, then there is an integer such that every entry of is strictly positive: for all states . This is the number-theoretic heart of the Convergence Theorem.
import Definitions.Def_mm_basic
namespace MarkovMixing
/-- **Proposition 1.7** (LPW): if `P` is irreducible and aperiodic, then some
power of `P` has all entries strictly positive. -/
theorem exists_pow_pos {V : Type*} [Fintype V] [DecidableEq V]
(P : Matrix V V ℝ) (hP : IsStochastic P) (hirr : Irreducible P)
(hap : Aperiodic P) :
∃ r : ℕ, 0 < r ∧ ∀ x y : V, 0 < (P ^ r) x y := by
sorry
end MarkovMixing
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Let be an arbitrary finite type equipped with decidable equality (the statement does not require to be nonempty), and let be a matrix with real entries. Assume three hypotheses. First, is stochastic in the sense of this bundle's custom definition: every entry satisfies , and every row sums to one, (if is empty, both conditions are vacuously true). Second, is irreducible in the bundle's sense: for every pair there exists a natural number with ; since is allowed and is the identity matrix, this condition is automatically satisfied when , and only constrains pairs , for which some must give a positive entry. Third, is aperiodic in the bundle's sense: for every state , the quantity
equals , where is the set of return times of , and the supremum is the supremum in the natural numbers, which by convention takes the value when the set of common divisors is unbounded above (in particular, if is empty then every natural number divides all of its elements vacuously, the divisor set is all of , and the supremum is , so aperiodicity as defined here forces each to be nonempty — every state must have some return time with — with greatest common divisor structure making the largest common divisor). Under these three hypotheses, the theorem asserts the existence of a natural number with such that all entries of the -th matrix power of are strictly positive:
The claim is existential only — it asserts a single such exponent (which then makes simultaneously for every ordered pair of states), and says nothing about positivity of for exponents other than , nor gives any bound on . If is empty, the inner universal statement is vacuous and the conclusion holds trivially (e.g. with ).
Confirmed by the mission captain (proposal self-audit).