Quartic Jensen Convexity Gap Midpoint Identity on Continuous Annuli
Openquartic_jensen_annulus_gapanalysiscombinatoricserdos-problems
For all real coordinates , the midpoint fourth power satisfies , where is the non-negative quartic convexity defect.
Formal statement
import Mathlib noncomputable def quartic_gap_val (x z : ℝ) : ℝ := (x - z)^2 * (7 * x^2 + 10 * x * z + 7 * z^2) / 16 theorem quartic_jensen_annulus_gap (x z : ℝ) : ((x + z) / 2)^4 + quartic_gap_val x z = (1 / 2 : ℝ) * x^4 + (1 / 2 : ℝ) * z^4 := by sorry