Skip to content

Commit

Permalink
Merge pull request #10 from mseri/inv-sigma
Browse files Browse the repository at this point in the history
Add definition of invariant sigma algebra
  • Loading branch information
mseri authored Feb 29, 2024
2 parents e143580 + be0c974 commit aa105fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions BET/Birkhoff.lean
Original file line number Diff line number Diff line change
Expand Up @@ -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 aa105fa

Please sign in to comment.