Uniform layer-cake grid sums recover weighted lower integrals
ProvedConvexOptimization.weighted_unit_lintegral_eq_iSup_gridanalysisintegrationmeasure-theory
Let and let be measurable functions bounded above by one. For , put and define
for . Then the weighted lower integrals are recovered by the supremum of the uniform lower layer-cake sums:
This is a uniform-grid form of the layer-cake representation and separates the analytic limiting step from finite-level geometric estimates.
Formalization Note The equality is stated in the extended nonnegative reals and uses lower Lebesgue integrals.
Preamble
import Theorems.Thm_ConvexOptimization_brunn_minkowski_real_line_weighted open scoped RealInnerProductSpace ENNReal open MeasureTheory
Formal statement
theorem ConvexOptimization.weighted_unit_lintegral_eq_iSup_grid
(l : ℝ) (hl0 : 0 < l) (hl1 : l < 1)
(f g : ℝ → ℝ≥0∞)
(hf : Measurable f) (hg : Measurable g)
(hf1 : ∀ x, f x ≤ 1) (hg1 : ∀ x, g x ≤ 1) :
ENNReal.ofReal (1 - l) * (∫⁻ x, f x) +
ENNReal.ofReal l * (∫⁻ x, g x) =
⨆ N : {N : ℕ // 0 < N},
(((N.1 + 1 : ℕ) : ℝ≥0∞)⁻¹ *
∑ i : Fin N.1,
(ENNReal.ofReal (1 - l) * volume
{x : ℝ | (((i.val + 1 : ℕ) : ℝ≥0∞) / (N.1 + 1 : ℕ)) ≤ f x} +
ENNReal.ofReal l * volume
{y : ℝ | (((i.val + 1 : ℕ) : ℝ≥0∞) / (N.1 + 1 : ℕ)) ≤ g y})) := by
sorry
Source
R. J. Gardner, The Brunn-Minkowski Inequality, https://faculty.gardner.wwu.edu/gorizia12.pdf, PDF p. 5, equations (4)-(5), and Theorem 4.1 first proof, PDF pp. 6-7; the finite uniform sums are the lower level-set sums for equation (5).