The cube blend has combinatorial diameter exactly
ProvedHirsch.cube_blend_diameterhirsch-conjecturepolytopes
For the polytope blendPoly d satisfies , and the two antipodal vertices , are joined by no padded walk of length . Distances are within a lobe and across lobes according to whether is nonempty, so the diameter is : the polytope satisfies the Hirsch bound while having exponentially small expansion.
Proof idea. A shortest cross-lobe path uses exactly one bridge; the cost of crossing at singleton is , minimized over .
Preamble
import Mathlib import Definitions.Def_Hirsch_model import Definitions.Def_Hirsch_walk import Definitions.Def_Hirsch_cube_blend open scoped RealInnerProductSpace
Formal statement
namespace Hirsch
theorem cube_blend_diameter (d : ℕ) (hd : 2 ≤ d) :
DiamLE (blendPoly d) (2 * d - 1) ∧
∃ u v, u ∈ Set.extremePoints ℝ (blendPoly d) ∧ v ∈ Set.extremePoints ℝ (blendPoly d) ∧
¬ Reach (blendPoly d) (2 * d - 2) u v := by sorry
end HirschSource
Campaign research notes (2026-09-06), Prove2Me mission 'The Polynomial Hirsch Conjecture', discussion thread; independently audited on-paper proofs, note 'deep_astra_geom' Section 3.1 (audited)