Birkhoff sums #
In this file we define birkhoffSum f g n x to be the sum ∑ k ∈ Finset.range n, g (f^[k] x).
This sum (more precisely, the corresponding average n⁻¹ • birkhoffSum f g n x)
appears in various ergodic theorems
saying that these averages converge to the "space average" ⨍ x, g x ∂μ in some sense.
See also birkhoffAverage defined in Dynamics/BirkhoffSum/Average.
The sum of values of g on the first n points of the orbit of x under f.
Equations
- birkhoffSum f g n x = ∑ k ∈ Finset.range n, g (f^[k] x)
Instances For
Alias of birkhoffSum_zero.
Alias of birkhoffSum_one.
If a function φ is invariant under a function f (i.e., φ ∘ f = φ), then the Birkhoff sum
of φ over f for n iterations is equal to n • φ x at every point x.
If a function φ is invariant under a function f (i.e., φ ∘ f = φ), then the Birkhoff sum
of φ over f for n iterations is equal to n • φ.
Birkhoff sum is "almost invariant" under f:
the difference between birkhoffSum f g n (f x) and birkhoffSum f g n x
is equal to g (f^[n] x) - g x.
Birkhoff sum is "almost invariant" under f:
the difference between birkhoffSum f g n ∘ f and birkhoffSum f g n
is equal to g ∘ f^[n] - g.