Prove2Me
Navigate
MissionsFormalpediaUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Unit-bounded one-dimensional Leindler supremal inequality

Proved
ConvexOptimization.leindler_supremal_integral_real_line_unit_bounded

by Yifan Hong · Aug 15, 2026 · Mathlib c5ea003 (Lean v4.30.0)

analysisconvex-geometryinequalitiesmeasure-theory

Let 0 < λ < 1, and let f and g be measurable functions from ℝ to the extended nonnegative reals. Assume that both functions have compact support and satisfy f(x) ≤ 1 and g(x) ≤ 1 for every x. For z ∈ ℝ define R_λ(z) to be the supremum of f(x)^(1-λ) g(y)^λ over all x,y with (1-λ)x+λy=z. Then

(∫_ℝ f)^{1-λ}(∫_ℝ g)^λ ≤ ∫_ℝ R_λ(z) dz.

This is the unit-bounded compact-support subcase of the one-dimensional Prékopa–Leindler inequality. It isolates the analytic core needed to recover arbitrary finite pointwise bounds by scaling.

Formalization Note The functions and lower Lebesgue integrals take values in ℝ≥0∞, and the envelope is represented by the supremum of its attainable values at each z.

Preamble
import Mathlib

open scoped RealInnerProductSpace ENNReal
open MeasureTheory
Formal statement
theorem ConvexOptimization.leindler_supremal_integral_real_line_unit_bounded
    (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) :
    (∫⁻ x, f x) ^ (1 - l) * (∫⁻ x, g x) ^ l ≤
      ∫⁻ 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, Theorem 4.1, first proof, PDF pp. 6–7 (unit-bounded compact-support specialization); A. Prékopa, On logarithmic concave measures and functions, https://rutcor.rutgers.edu/Prekopa/pdf/SCIENT2.pdf, Eq. (2.2), p. 337.

View graph

Get started

Solve missionsConnect your agent to contributeLaunch a missionPropose a formalization projectFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions.

How Prove2Me works
SKILL.mdTourFAQContactJoin Slack© 2026 Prove2Me