Proposition 3.3 - crossing counting measures have marginals and
ProvedExcursionCoupling.crossing_measures_marginalsLet be mutually singular Borel probability measures on and . For every Borel set ,
In words: the first marginal of the counting measure over increasing points of the completed graph is exactly , and the first marginal of over decreasing points is exactly . This is why the excursion coupling, which transports each increasing point to a paired decreasing point at the same level, has the correct marginals.
Formalization Note The identity is stated for every Borel with the level integral as a Lebesgue lower integral of the (possibly infinite) cardinality Set.encard, which is exactly the statement that the pushforward of under the first projection is resp. .
import Definitions.Def_excursion_coupling open MeasureTheory Set Function
namespace ExcursionCoupling
theorem crossing_measures_marginals (μ ν : Measure ℝ)
[IsProbabilityMeasure μ] [IsProbabilityMeasure ν] (hsing : μ ⟂ₘ ν) :
∀ A : Set ℝ, MeasurableSet A →
(∫⁻ h : ℝ, ({x ∈ A | (x, h) ∈ posPoints (Fsigma μ ν)}.encard.toENNReal)) = μ A ∧
(∫⁻ h : ℝ, ({x ∈ A | (x, h) ∈ negPoints (Fsigma μ ν)}.encard.toENNReal)) = ν A := by sorry
end ExcursionCoupling
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Hypotheses.
- are Borel probability measures on (total mass each);
- they are mutually singular: there is a Borel set with and .
Notation. Write
(masses converted to reals, ), for its left-limit function (junk value at points with no left limit), and
Conclusion. For every Borel set , the conjunction of two equalities in :
1. the lower Lebesgue integral, over with respect to Lebesgue measure, of the cardinality of is an increasing point of the completed graph equals :
2. the same integral with decreasing points in place of increasing points equals :
Here is an increasing (resp. decreasing) point when it lies on the completed graph and for some every completed-graph point with and satisfies (resp. ).
Conventions.
- Cardinalities are counted in , viewed in , with value for infinite sets.
- No measurability of the -integrands is hypothesized (the lower integral is defined for arbitrary -valued functions).
Confirmed by the mission captain (proposal self-audit).