One-dimensional Prékopa–Leindler inequality (lower-integral form)
ProvedConvexOptimization.prekopa_leindler_one_dimensionalconvexanalysisconvexoptimizationlog-concavitymeasure-theory
Let , and let be measurable. Assume that for every ,
Then their lower Lebesgue integrals satisfy
This is the extended-nonnegative, lower-integral form of the one-dimensional Prékopa–Leindler inequality, allowing both function values and integrals to be .
Preamble
import Mathlib open scoped RealInnerProductSpace ENNReal open MeasureTheory
Formal statement
theorem ConvexOptimization.prekopa_leindler_one_dimensional
(l : ℝ) (hl0 : 0 < l) (hl1 : l < 1)
(f g h : EuclideanSpace ℝ (Fin 1) → ℝ≥0∞)
(hf : Measurable f) (hg : Measurable g) (hh : Measurable h)
(hple : ∀ x y : EuclideanSpace ℝ (Fin 1),
f x ^ (1 - l) * g y ^ l ≤ h ((1 - l) • x + l • y)) :
(∫⁻ x, f x) ^ (1 - l) * (∫⁻ x, g x) ^ l ≤ ∫⁻ x, h x := by sorrySource
Richard J. Gardner, The Brunn-Minkowski Inequality: A Survey with Proofs, https://faculty.gardner.wwu.edu/gorizia12.pdf, Theorem 4.1 (pp. 6-8), together with the lower-integral extension described in András Prékopa, Logarithmic concave measures with applications to stochastic programming, https://rutcor.rutgers.edu/Prekopa/pdf/SCIENT2.pdf, equations (2.1)-(2.2) and the surrounding extended-integral convention.