Documentation

Mathlib.Dynamics.Ergodic.EmpiricalMeasure

Empirical measures and the Krylov–Bogolyubov theorem #

This module introduces orbit empirical measures for an iterated map. This allows us to prove the Krylov–Bogolyubov (or Krylov–Bogoliubov) theorem, which asserts the existence of invariant Borel probability measures for continuous dynamics on compact metrizable spaces.

Main definitions #

Main results #

TODO #

noncomputable def MeasureTheory.empiricalMeasure {X : Type u_1} [MeasurableSpace X] (f : XX) (x : X) (n : ) :

An empirical measure is the Birkhoff average of the Dirac measures along an orbit starting from x under the dynamics generated by f. This uses n + 1 iterations, to give a well-defined probability measure for any n.

Equations
Instances For
    theorem MeasureTheory.tendsto_integral_comp_sub_integral_empiricalMeasure_of_isBoundedUnder {X : Type u_1} [MeasurableSpace X] (f : XX) (x : X) {E : Type u_2} [NormedAddCommGroup E] [NormedSpace E] [CompleteSpace E] (g : XE) [MeasurableSingletonClass X] (hfg : Bornology.IsBounded (Set.range fun (x_1 : ) => g (f^[x_1] x))) :
    Filter.Tendsto (fun (n : ) => (y : X), (g f) y empiricalMeasure f x n - (y : X), g y empiricalMeasure f x n) Filter.atTop (nhds 0)
    theorem MeasureTheory.ProbabilityMeasure.integral_comp_eq_integral_of_mapClusterPt {X : Type u_1} [MeasurableSpace X] [TopologicalSpace X] [BorelSpace X] {α : Type u_2} {F : Filter α} {f : XX} (hf : Continuous f) {u : αProbabilityMeasure X} {μ : ProbabilityMeasure X} ( : MapClusterPt μ F u) {g : BoundedContinuousFunction X } (hg : Filter.Tendsto (fun (t : α) => (y : X), (g f) y (u t) - (y : X), g y (u t)) F (nhds 0)) :
    (y : X), (g f) y μ = (y : X), g y μ

    If, for a bounded continuous function g, the difference between the integrals of g ∘ f and g tends to zero with respect to a filter of probability measures, then for a limit measure μ, we have ∫ y, (g ∘ f) y ∂μ = ∫ y, g y ∂μ.

    Krylov-Bogolyubov theorem: there exists a regular, invariant, Borel probability measure, for a continuous function on a nonempty, compact, Hausdorff space.

    theorem MeasureTheory.exists_measurePreserving_probabilityMeasure_of_compact_forwardInvariant {X : Type u_1} [MeasurableSpace X] [TopologicalSpace X] [BorelSpace X] [T2Space X] {K : Set X} (hcomp : IsCompact K) (hnonempty : K.Nonempty) {f : XX} (hfcont : ContinuousOn f K) (hfinv : Set.MapsTo f K K) (hfmeas : Measurable f) :

    Krylov-Bogolyubov theorem for forward invariant compact sets.