Eq. (8) - signed indicatrix identity for increments of
ProvedExcursionCoupling.cdf_difference_eq_signed_indicatrix_integralLet be finite Borel measures on and . For all ,
where count the increasing and decreasing points of the completed graph of with . Together with eqs. (6)-(7) this identifies the positive and negative variations of as the level integrals of and , which is how the marginals and are recovered from crossing counts in Proposition 3.3.
Formalization Note The two lower integrals are extended-real valued and finite (each is bounded by the total variation); the statement takes their real values via ENNReal.toReal.
import Definitions.Def_excursion_coupling open MeasureTheory Set Function
namespace ExcursionCoupling
theorem cdf_difference_eq_signed_indicatrix_integral
(μ ν : Measure ℝ) [IsFiniteMeasure μ] [IsFiniteMeasure ν] (s t : ℝ) (_hst : s ≤ t) :
Fsigma μ ν t - Fsigma μ ν s
= (∫⁻ h : ℝ, ({x ∈ Ioc s t | (x, h) ∈ posPoints (Fsigma μ ν)}.encard.toENNReal)).toReal
- (∫⁻ h : ℝ,
({x ∈ Ioc s t | (x, h) ∈ negPoints (Fsigma μ ν)}.encard.toENNReal)).toReal := by sorry
end ExcursionCoupling
Read-back
What the Lean code literally says, in plain math · claude-fable-5
Setting. Let be Borel measures on , each assumed finite (finite total mass), and let with the hypothesis .
Throughout, write
(masses converted to reals by the total map sending ), for its left-limit function (junk value where no left limit exists), and completed graph for the set of with between and inclusive.
Conclusion. The theorem asserts the real-number identity
where:
- is the real number obtained from the lower Lebesgue integral (over , Lebesgue measure)
the cardinality counted in , viewed in , over the half-open interval ; here is increasing when it is on the graph and, for some , every graph point with , has ;
- is the analogous quantity for decreasing points, i.e. with .
Conventions and edge cases.
- Each of is produced by the total conversion that sends to the junk value : if either integral is infinite, the corresponding term of the right-hand side is .
- No measurability of the integrands is hypothesized, and no claim is made that the integrals are finite.
Confirmed by the mission captain (proposal self-audit).