Skip to content

Commit

Permalink
Add definition of invariant sigma algebra
Browse files Browse the repository at this point in the history
Signed-off-by: Marcello Seri <marcello.seri@gmail.com>
  • Loading branch information
mseri committed Feb 29, 2024
1 parent 5ebdd5e commit 7706765
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion BET/Birkhoff.lean
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This file defines Birkhoff sums, other related notions and proves Birkhoff's erg

section Ergodic_Theory

open BigOperators MeasureTheory
open Function BigOperators MeasureTheory


/-
Expand All @@ -42,6 +42,9 @@ define `A := { x | lim_n ∑_{i=0}^{n} f(T^i x) = ∞}`.
def A := { x : α | Filter.Tendsto (fun n ↦ ∑ i in Finset.range n, f (T^[i] x)) Filter.atTop Filter.atTop }

/- `A` is in `I = inv_sigma_algebra`. -/
-- idea: is it better to define a new type measureable sets in alpha and then restrict to that type?
-- def inv_sigma_algebra := { S : Set α | MeasurableSet S ∧ T⁻¹' S = S }
def inv_sigma_algebra := { S : Set α | MeasurableSet S ∧ IsInvariant (fun n x ↦ T^[n] x) S }

/- define `Φ_n : max { ∑_{i=0}^{n} φ ∘ T^i }_{k ≤ n}` -/

Expand Down

0 comments on commit 7706765

Please sign in to comment.