Theorem 1.1 - existence of the excursion coupling
OpenExcursionCoupling.excursion_coupling_existsLet be mutually singular Borel probability measures on . Then there exists a probability measure on with first marginal and second marginal that is concentrated on the set of paired routes: the pairs (for levels ) and (for ) of consecutive generalized solutions of at regular levels, as in eq. (14) of the source.
This is the existence half of the excursion coupling of Theorem 1.1: the geometric pairing of crossings at almost every level assembles into an actual transport plan of . Proposition 3.2 makes the pairing well defined and Proposition 3.3 provides the marginals.
Formalization Note Concentration is stated as with the pairedRoutes set; the specific level-uniform law constructed in the source is not prescribed, only its defining support and marginal properties, which is the content needed by Proposition 3.5 and the Main Theorem.
import Definitions.Def_excursion_coupling open MeasureTheory Set Function
namespace ExcursionCoupling
theorem excursion_coupling_exists (μ ν : Measure ℝ)
[IsProbabilityMeasure μ] [IsProbabilityMeasure ν] (hsing : μ ⟂ₘ ν) :
∃ π : Measure (ℝ × ℝ), IsProbabilityMeasure π ∧
π.map Prod.fst = μ ∧ π.map Prod.snd = ν ∧
π (pairedRoutes (Fsigma μ ν))ᶜ = 0 := 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 .
Write (masses converted to reals, ).
Conclusion. The theorem asserts the existence (plain , no uniqueness) of a Borel measure on such that:
- (i) is a probability measure;
- (ii) the pushforward of under equals ;
- (iii) the pushforward under equals ;
- (iv) assigns measure to the complement of the set of paired routes of :
(the measure is evaluated on this set as an outer measure; no measurability of is asserted).
What is. is the set of pairs for which there exists such that:
- is a regular level of — i.e. the generalized level set
consists of exactly points for some (possibly ), each an increasing or decreasing point of the completed graph, with increasing iff ( even);
- is an increasing point and a decreasing point — increasing/decreasing meaning: on the completed graph and, for some , every graph point with , has , resp. ;
- and either
- , , and no point of the open interval lies in ; or
- , , and no point of lies in .