English
If μ is left-invariant and finite, then the action of G on itself is ergodic with respect to μ.
Русский
Если μ слева инвариантна и конечна, то действие G на G эргодично относительно μ.
LaTeX
$$$[μ.IsMulLeftInvariant] \Rightarrow ErgodicSMul G G μ$$$
Lean4
@[to_additive]
instance [μ.IsMulLeftInvariant] : ErgodicSMul G G μ :=
by
refine ⟨fun {s} hsm hs ↦ ?_⟩
suffices (∃ᵐ x ∂μ, x ∈ s) → ∀ᵐ x ∂μ, x ∈ s
by
simp only [eventuallyConst_set, ← not_frequently]
exact or_not_of_imp this
intro hμs
obtain ⟨a, has, ha⟩ : ∃ a ∈ s, ∀ᵐ b ∂μ, (b * a ∈ s ↔ a ∈ s) :=
by
refine (hμs.and_eventually ?_).exists
rw [ae_ae_comm]
· exact ae_of_all _ fun b ↦ (hs b).mem_iff
· exact ((hsm.preimage <| measurable_snd.mul measurable_fst).mem.iff (hsm.preimage measurable_fst).mem).setOf
simpa [has] using (MeasureTheory.quasiMeasurePreserving_mul_right μ a⁻¹).ae ha