Documentation

Oseledets.Entropy.KSEntropyProps

The infimum characterization of the Kolmogorov–Sinai entropy #

For a measure-preserving transformation T and a finite measurable partition α, the Kolmogorov–Sinai entropy h(α, T) = ksEntropyPartition hT P is the Fekete limit of the averaged iterated-join entropies ksEntropySeq hT P n / n. A subadditive sequence's averages converge down to their infimum, so the limit is a lower bound for every averaged term. This file records that standard property:

This is the genuine tightening behind the cruder bound h(α, T) ≤ H(α) (ksEntropyPartition_le_entropy), which it recovers as the n = 1 case via ksEntropySeq_one. The proof is a direct application of Fekete's lemma in the sharp lim ≤ u n / n form (Subadditive.lim_le_div in Mathlib.Analysis.Subadditive); the required bounded-below hypothesis is the same one discharged from entropy nonnegativity in tendsto_ksEntropySeq.

The property is standard in the Kolmogorov–Sinai theory; see Le Maître, Notes on the Kolmogorov–Sinai theorem (2017), §1, where h(α, T) is introduced precisely as the infimum infₙ (1/n) H(⋁ₖ₌₀ⁿ⁻¹ T⁻ᵏ α) of the subadditive averaged entropies.

Main results #

References #

theorem Oseledets.Entropy.bddBelow_ksEntropySeq_div {α : Type u_1} {ι : Type u_2} [MeasurableSpace α] [Fintype ι] {μ : MeasureTheory.Measure α} [MeasureTheory.IsProbabilityMeasure μ] {T : αα} (hT : MeasureTheory.MeasurePreserving T μ μ) (P : MeasurePartition μ ι) :
BddBelow (Set.range fun (n : ) => ksEntropySeq hT P n / n)

The averaged iterated-join entropies are bounded below (by 0): each ksEntropySeq hT P n / n is a quotient of nonnegative numbers. This is the boundedness hypothesis of Fekete's lemma, packaged for reuse.

Infimum characterization of the Kolmogorov–Sinai entropy: for every n ≥ 1, h(α, T) ≤ H(⋁ₖ₌₀ⁿ⁻¹ T⁻ᵏ α) / n. Equivalently, the averaged iterated-join entropies converge down to their infimum, h(α, T) = infₙ ksEntropySeq n / n, so h(α, T) is a lower bound for each averaged term. This is the sharp form of the bound h(α, T) ≤ H(α) (ksEntropyPartition_le_entropy), recovered from it at n = 1 via ksEntropySeq_one. The proof applies Fekete's lemma in its lim ≤ u n / n form (Subadditive.lim_le_div) to the subadditive sequence ksSubadditive hT P, with the bounded-below hypothesis supplied by bddBelow_ksEntropySeq_div.