Proposition 3.5 - monotone plans are concentrated on the paired routes
ProvedExcursionCoupling.monotone_plan_concentrated_on_paired_routesLet be mutually singular Borel probability measures on with finite first moments, and let be a transport plan with marginals and concentrated on a monotone set of arches - non-crossing, non-connecting, and consistently oriented in the sense of Definition 0.3. Then is still a monotone set and is concentrated on , where is the set of paired routes of eq. (14).
This is the uniqueness-side characterization of the excursion coupling: any monotone transport plan must already use only the routes that pair consecutive crossings of the level sets of . In the Main Theorem of the paper this is the key step of the implication from monotonicity to the excursion coupling, identifying the limit of the -optimal plans for the strictly concave costs , .
Formalization Note Concentration on a set is stated as ; finite first moments as integrability of the identity function.
import Definitions.Def_excursion_coupling open MeasureTheory Set Function
namespace ExcursionCoupling
theorem monotone_plan_concentrated_on_paired_routes
(μ ν : Measure ℝ) [IsProbabilityMeasure μ] [IsProbabilityMeasure ν]
(hsing : μ ⟂ₘ ν)
(hμ1 : Integrable (fun x : ℝ => x) μ) (hν1 : Integrable (fun x : ℝ => x) ν)
(γ : Measure (ℝ × ℝ)) (hγfst : γ.map Prod.fst = μ) (hγsnd : γ.map Prod.snd = ν)
(S : Set (ℝ × ℝ)) (hS : IsMonotoneArchSet S) (hconc : γ Sᶜ = 0) :
IsMonotoneArchSet (pairedRoutes (Fsigma μ ν) ∩ S) ∧
γ (pairedRoutes (Fsigma μ ν) ∩ S)ᶜ = 0 := by sorry
end ExcursionCoupling
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Hypotheses, all explicit.
- are Borel probability measures on (total mass each);
- they are mutually singular: there is a Borel set with , ;
- the identity function is Bochner-integrable with respect to and with respect to (i.e. each has finite first absolute moment);
- is a Borel measure on — not explicitly assumed finite or a probability measure — whose pushforward under equals and under equals ;
- is an arbitrary set (no measurability assumed) that is a monotone arch set, i.e. satisfies all three of:
- non-crossing: for all , the closed intervals between the two coordinates of , resp. , taken in either order, are disjoint, or meet in exactly one point, or one contains the other;
- non-connecting: for all with , one has ;
- same orientation: for all , if is contained in the open interval strictly between and then ;
- (outer-measure evaluation).
Notation. Write for the set of paired routes of , where
(masses converted to reals, ). That is, is the set of pairs admitting a level that is a regular level of (its generalized level set, using left limits with junk values where none exist, is exactly strictly increasing points, each an increasing or decreasing crossing point, increasing precisely when the index is even), with an increasing point, a decreasing point, and either
- , with no generalized solution in the open interval ; or
- , with no generalized solution in .
Conclusion. The conjunction:
- (i) the intersection is itself a monotone arch set (satisfies the same three conditions above); and
- (ii) gives full mass to it:
(again outer-measure evaluation; no measurability of is asserted).
Confirmed by the mission captain (proposal self-audit).