Finite uniform-grid estimate for the weighted supremal envelope
ProvedConvexOptimization.weighted_unit_grid_sum_le_supremal_envelope_lintegralanalysisconvex-geometryinequalitiesmeasure-theory
Let , let , and let be measurable, compactly supported functions bounded above by one, each with pointwise supremum one. Put and
for . Define the weighted supremal envelope
Then
This finite-level estimate is the geometric core of the layer-cake proof of the normalized one-dimensional Prékopa--Leindler inequality. It is reusable independently of the limiting passage from uniform level grids to integrals.
Formalization Note Measures, coefficients, the supremal envelope, and lower integrals are extended nonnegative real numbers.
Preamble
import Theorems.Thm_ConvexOptimization_brunn_minkowski_real_line_weighted open scoped RealInnerProductSpace ENNReal Pointwise open MeasureTheory Set
Formal statement
theorem ConvexOptimization.weighted_unit_grid_sum_le_supremal_envelope_lintegral
(N : ℕ) (hN : 0 < N)
(l : ℝ) (hl0 : 0 < l) (hl1 : l < 1)
(f g : ℝ → ℝ≥0∞)
(hf : Measurable f) (hg : Measurable g)
(hfc : HasCompactSupport f) (hgc : HasCompactSupport g)
(hf1 : ∀ x, f x ≤ 1) (hg1 : ∀ x, g x ≤ 1)
(hfsup : sSup (Set.range f) = 1)
(hgsup : sSup (Set.range g) = 1) :
((N + 1 : ℕ) : ℝ≥0∞)⁻¹ *
∑ i : Fin N,
(ENNReal.ofReal (1 - l) * volume
{x : ℝ | (((i.val + 1 : ℕ) : ℝ≥0∞) / (N + 1 : ℕ)) ≤ f x} +
ENNReal.ofReal l * volume
{y : ℝ | (((i.val + 1 : ℕ) : ℝ≥0∞) / (N + 1 : ℕ)) ≤ g y}) ≤
∫⁻ z, sSup {q : ℝ≥0∞ | ∃ x y : ℝ,
(1 - l) • x + l • y = z ∧
q = f x ^ (1 - l) * g y ^ l} := 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).