Integrated asymmetric three-label stability
ProvedFormalCapacity.Measure.ThreeLabelDensities.integrated_stabilityLet be an arbitrary measure space, let be three-label density data, and let be weight functions. Define, pointwise,
For set
Assume that, almost everywhere, all four block intensities are nonnegative and
Assume also, almost everywhere,
Require each of to be real-integrable with respect to . Write , , and . Then both bounds hold:
Thus integrated downward score loss is controlled by the two adjacent-pair deficits, while integrated upward score gain is controlled by the outer-pair deficit. No probability normalization, finite-measure assumption, stochastic process, or realized equality partition is part of the statement. Integrability is required only for the five displayed combinations; separate integrability or measurability assumptions on every input function are not imposed. Zero measures, tied densities, and boundary weights are included.
import Mathlib
import Mathlib.MeasureTheory.Integral.Bochner.Basic
import Definitions.Def_capacityMeasureThreeLabel
set_option autoImplicit false
/-!
# Measure-theoretic three-label stability
This file lifts the scalar theorem `FormalCapacity.Finite.threeLabel_stability`
to densities over an arbitrary measure space. Pair deficits are defined
pointwise, proved nonnegative almost everywhere from the block-capacity
constraints, and then integrated. Nothing here assumes a stochastic process
or a Brownian law.
-/
open MeasureTheory
open FormalCapacity.Measure
open FormalCapacity.Measure.ThreeLabelDensities
variable {α : Type*}
variable [MeasurableSpace α]
theorem FormalCapacity.Measure.ThreeLabelDensities.integrated_stability (d : ThreeLabelDensities α) (q12 q23 : α → ℝ)
(μ : Measure α) (hint : d.IntegrableFor q12 q23 μ)
(hv : ∀ᵐ x ∂μ, d.ValidAt x)
(hq : ∀ᵐ x ∂μ, d.AdmissibleAt q12 q23 x) :
(∫ x, d.canonicalScore q12 q23 x ∂μ) - (∫ x, d.deficit12 x ∂μ) -
(∫ x, d.deficit23 x ∂μ) ≤ ∫ x, d.actualScore q12 q23 x ∂μ ∧
(∫ x, d.actualScore q12 q23 x ∂μ) ≤
(∫ x, d.canonicalScore q12 q23 x ∂μ) +
(∫ x, d.deficit13 x ∂μ) := by
sorry