/- 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 FormalConjecturesUtil

Planar $L_p$-Rogers-Shephard, the equality case

Reference: arxiv/2607.03582 $L_p$-Rogers-Shephard type inequalities for $L_p$-zonoids and symmetric bodies by Matthieu Fradelizi, Auttawich Manui, Mark Meyer, Cheikh Saliou Ndiaye

Corollary 29 bounds $|K \oplus_p -K|$ against $|K|$ for planar convex bodies with a centre of symmetry containing the origin, and notes that parallelograms with a vertex at the origin attain it. Conjecture 5 asks whether they are the only bodies that do.

open MeasureTheory Realopen scoped EuclideanGeometrynamespace Arxiv.«2607.03582»

The support function $h_K(u) = \sup_{x \in K} \langle x, u\rangle$.

noncomputable def supportFunction (K : Set ℝ²) (u : ℝ²) : := x : K, inner (x : ℝ²) u

The Firey $L_p$-sum $K \oplus_p L$, equation (4) of the source: the body whose support function is $(h_K^p + h_L^p)^{1/p}$.

The source defines it by that support function, which needs both bodies to contain the origin. Here it is the intersection of the halfspaces the support function cuts out, which agrees with the source's set on the bodies the statements below quantify over and needs no separate existence argument.

noncomputable def lpSum (p : ) (K L : Set ℝ²) : Set ℝ² := {x | u : ℝ², inner x u (supportFunction K u ^ p + supportFunction L u ^ p) ^ (1 / p)}

$K$ has a centre of symmetry: some $c$ with $K$ invariant under reflection in $c$.

def HasCentreOfSymmetry (K : Set ℝ²) : Prop := c : ℝ², x, x K (2 c - x) K

The constant of Corollary 29, $\frac{2\Gamma(1+1/q)^2}{\Gamma(1+2/q)} + 2$.

noncomputable def rsConstant (q : ) : := 2 * Real.Gamma (1 + 1 / q) ^ 2 / Real.Gamma (1 + 2 / q) + 2

$K$ is a parallelogram with a vertex at the origin: the convex hull of $0$, $a$, $b$ and $a + b$ for linearly independent $a$, $b$.

def IsParallelogramAtOrigin (K : Set ℝ²) : Prop := a b : ℝ², LinearIndependent ![a, b] K = convexHull {0, a, b, a + b}

Corollary 29 (Fradelizi-Manui-Meyer-Ndiaye, 2026). For a planar convex body $K$ with a centre of symmetry containing the origin and $p > 1$, $$|K \oplus_p -K| \leq \left(\frac{2\Gamma(1+1/q)^2}{\Gamma(1+2/q)} + 2\right)|K|,$$ where $q$ is the Hölder conjugate of $p$.

@[category research solved, AMS 52] theorem volume_lpSum_le (K : Set ℝ²) (hK : Convex K) (hKc : IsCompact K) (hKi : (interior K).Nonempty) (hsym : HasCentreOfSymmetry K) (h0 : (0 : ℝ²) K) (p q : ) (hp : 1 < p) (hq : 1 / p + 1 / q = 1) : volume (lpSum p K (-K)) ENNReal.ofReal (rsConstant q) * volume K := K:Set ℝ²hK:Convex KhKc:IsCompact KhKi:(interior K).Nonemptyhsym:HasCentreOfSymmetry Kh0:0 Kp:q:hp:1 < phq:1 / p + 1 / q = 1volume (lpSum p K (-K)) ENNReal.ofReal (rsConstant q) * volume K All goals completed! 🐙

Parallelograms with a vertex at the origin attain the bound, which is the sharpness half of Corollary 29.

@[category research solved, AMS 52] theorem volume_lpSum_eq_of_isParallelogramAtOrigin (K : Set ℝ²) (hpar : IsParallelogramAtOrigin K) (p q : ) (hp : 1 < p) (hq : 1 / p + 1 / q = 1) : volume (lpSum p K (-K)) = ENNReal.ofReal (rsConstant q) * volume K := K:Set ℝ²hpar:IsParallelogramAtOrigin Kp:q:hp:1 < phq:1 / p + 1 / q = 1volume (lpSum p K (-K)) = ENNReal.ofReal (rsConstant q) * volume K All goals completed! 🐙

Conjecture 5 (Fradelizi-Manui-Meyer-Ndiaye, 2026). Among planar convex bodies with a centre of symmetry containing the origin, for $p > 1$, equality in Corollary 29 holds only for parallelograms with a vertex at the origin.

@[category research open, AMS 52] theorem isParallelogramAtOrigin_of_volume_lpSum_eq : answer(sorry) (K : Set ℝ²), Convex K IsCompact K (interior K).Nonempty HasCentreOfSymmetry K (0 : ℝ²) K p q : , 1 < p 1 / p + 1 / q = 1 volume (lpSum p K (-K)) = ENNReal.ofReal (rsConstant q) * volume K IsParallelogramAtOrigin K := True (K : Set ℝ²), Convex K IsCompact K (interior K).Nonempty HasCentreOfSymmetry K 0 K (p q : ), 1 < p 1 / p + 1 / q = 1 volume (lpSum p K (-K)) = ENNReal.ofReal (rsConstant q) * volume K IsParallelogramAtOrigin K All goals completed! 🐙

At $p = 2$ the conjugate is also $2$, and $\Gamma(3/2)^2 / \Gamma(2) = \pi/4$, so the constant is $\pi/2 + 2$.

h1:1 + 1 / 2 = 3 / 2h2:1 + 2 / 2 = 22 * (1 / 2 * π) ^ 2 / 1 + 2 = π / 2 + 2 h1:1 + 1 / 2 = 3 / 2h2:1 + 2 / 2 = 2this:π ^ 2 = π2 * (1 / 2 * π) ^ 2 / 1 + 2 = π / 2 + 2 All goals completed! 🐙end Arxiv.«2607.03582»