English
Let f be quasi-ergodic and g: α → X be null-measurable with X countably separated. If g is invariant a.e., then g is a.e. constant.
Русский
Пусть f — квазир ergodic, g: α → X нулевой измеримости и X разделяемо счётно. Если g устойчиво по отношению к f почти всюду, то g почти всюду CONSTANT.
LaTeX
$$$[QuasiErgodic(f, \\\\mu)] \\\\wedge [NullMeasurable(g, \\\\mu)] \\\\Rightarrow \\\\exists c, g = \\\\text{a.e. const}(\\\\alpha, c)$$$
Lean4
/-- Let `f : α → α` be a quasi-ergodic map.
Let `g : α → X` be a null-measurable function from `α` to a nonempty measurable space
with a countable family of measurable sets separating the points of `X`.
If `g` is a.e.-invariant under `f`, then `g` is a.e. constant. -/
theorem ae_eq_const_of_ae_eq_comp₀ (h : QuasiErgodic f μ) (hgm : NullMeasurable g μ) (hg_eq : g ∘ f =ᵐ[μ] g) :
∃ c, g =ᵐ[μ] const α c :=
h.ae_eq_const_of_ae_eq_comp_of_ae_range₀ (s := univ) univ_mem hgm hg_eq