The generalized Banach indicatrices are measurable in the level
ProvedExcursionCoupling.crossing_count_measurableLet be finite Borel measures on , let , and let be Borel. The generalized Banach indicatrices of relative to are the level-counting functions
counting respectively the increasing and the decreasing points of the completed graph of that lie above at height . The assertion is that both are Borel measurable functions of the level , as maps into .
Measurability of the indicatrix is the standing hypothesis that makes every statement of the form "integrate the crossing count over all levels" meaningful, and it is what allows the integral of a sum of crossing counts to be split as a sum of integrals. It is the measurability half of the classical Banach indicatrix theorem, here in the generalized (completed-graph, possibly discontinuous) setting of Bertoin-Yor.
Formalization note. Cardinalities are taken as Set.encard in ℕ∞ and coerced to
ℝ≥0∞, so no finiteness of the level sets is presupposed; levels with infinitely many
crossings simply give the value .
import Definitions.Def_excursion_coupling open MeasureTheory Set Function
namespace ExcursionCoupling
theorem crossing_count_measurable
(μ ν : Measure ℝ) [IsFiniteMeasure μ] [IsFiniteMeasure ν]
(A : Set ℝ) (hA : MeasurableSet A) :
Measurable (fun h : ℝ => ({x ∈ A | (x, h) ∈ posPoints (Fsigma μ ν)}.encard.toENNReal)) ∧
Measurable (fun h : ℝ =>
({x ∈ A | (x, h) ∈ negPoints (Fsigma μ ν)}.encard.toENNReal)) := by
sorry
end ExcursionCoupling