/-
Copyright 2026 The Formal Conjectures Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-/
import FormalConjecturesUtilBen Green's Open Problem 35
Estimate the infimum of the $L^p$ norm of the self-convolution of a nonnegative integrable function supported on $[0,1]$ with total integral $1$.
We model a function f : [0,1] → ℝ≥0 as a function f : ℝ → ℝ that is nonnegative, integrable,
supported on [0,1], and has total integral 1.
Gr01
B. J. Green,
CS17
A. Cloninger and S. Steinerberger,
MV10
M. Matolcsi and C. Vinuesa,
namespace Green35
open MeasureTheoryopen scoped Convolution ENNRealA nonnegative integrable function on $[0,1]$ with total integral $1$.
def IsUnitIntervalDensity (f : ℝ → ℝ) : Prop :=
Integrable f ∧ (∀ x, 0 ≤ f x) ∧ Function.support f ⊆ .Icc (0 : ℝ) 1 ∧ ∫ x, f x = 1The infimum of $|f \ast f|_p$ over unit-interval densities.
noncomputable def c (p : ℝ≥0∞) : ℝ≥0∞ :=
sInf { r | ∃ f, IsUnitIntervalDensity f ∧ r = eLpNorm (f ⋆ f) p }Lower bound for $c(p)$ for $1 < p \le \infty$, improving the known value at $p = 2$ or $p = \infty$.
@[category research open, AMS 26 28 42]
theorem green_35.lower :
let lb : ℝ≥0∞ → ℝ≥0∞ := answer(sorry)
(∀ p, 1 < p → lb p ≤ c p) ∧
(ENNReal.ofReal (Real.sqrt (4 / 7)) < c 2 ∨ 0.64 < c ∞) := ⊢ let lb := sorry;
(∀ (p : ℝ≥0∞), 1 < p → lb p ≤ c p) ∧ (ENNReal.ofReal √(4 / 7) < c 2 ∨ 0.64 < c ⊤)
All goals completed! 🐙Upper bound for $c(p)$ for $1 < p \le \infty$, improving the best-known value at $p = \infty$.
@[category research open, AMS 26 28 42]
theorem green_35.upper :
let ub : ℝ≥0∞ → ℝ≥0∞ := answer(sorry)
(∀ p, 1 < p → c p ≤ ub p) ∧ ub ∞ < 0.7505 := ⊢ let ub := sorry;
(∀ (p : ℝ≥0∞), 1 < p → c p ≤ ub p) ∧ ub ⊤ < 0.7505
All goals completed! 🐙
/- Known bounds and comparisons. -/
namespace variants
Lower bound for $c(2)$ from Green's first paper ([Gr01]); the constant is sqrt(4/7) (about 0.7559).
@[category research solved, AMS 26 28 42]
theorem c_2_lower : ENNReal.ofReal (Real.sqrt (4 / 7)) ≤ c 2 := ⊢ ENNReal.ofReal √(4 / 7) ≤ c 2
All goals completed! 🐙Best-known lower bound for $c(\infty)$ due to Cloninger and Steinerberger ([CS17]).
@[category research solved, AMS 26 28 42]
theorem c_inf_lower : 0.64 ≤ c ∞ := ⊢ 0.64 ≤ c ⊤
All goals completed! 🐙Best-known upper bound for $c(\infty)$ due to Matolcsi and Vinuesa ([MV10]).
@[category research solved, AMS 26 28 42]
theorem c_inf_upper : c ∞ ≤ 0.7505 := ⊢ c ⊤ ≤ 0.7505
All goals completed! 🐙A comparison bound from Young's inequality.
@[category textbook, AMS 26 28 42]
theorem c_inf_lower_young : (c 2) ^ 2 ≤ c ∞ := ⊢ c 2 ^ 2 ≤ c ⊤
All goals completed! 🐙
end variants
end Green35