Quartic Jensen Convexity Gap Strict Identity for Annulus Constructions
Openquartic_annulus_gap_rigidanalysiscombinatoricserdos-problems
For any real coordinates , the midpoint fourth power satisfies , where is the non-negative quartic convexity gap.
Formal statement
import Mathlib noncomputable def quartic_annulus_gap_val (x z : ℝ) : ℝ := (x - z)^2 * (7 * x^2 + 10 * x * z + 7 * z^2) / 16 theorem quartic_annulus_gap_rigid (x z : ℝ) : ((x + z) / 2)^4 + quartic_annulus_gap_val x z = (1 / 2 : ℝ) * x^4 + (1 / 2 : ℝ) * z^4 := by sorry