The cube blend is a bounded polytope with vertices
ProvedHirsch.cube_blend_vertex_counthirsch-conjecturepolytopes
For the polytope blendPoly d (the inequalities , , with ) is nonempty and bounded, and its vertices are exactly the points
for , , , in the coordinates . Each is simple, with tight rows .
Proof idea. No vertex has ; at only upper and plus rows can be tight, at most one per index, so a vertex has exactly one tight row per index and not all upper; solving gives the displayed points, which are feasible with independent tight normals.
Preamble
import Mathlib import Definitions.Def_Hirsch_model import Definitions.Def_Hirsch_cube_blend open scoped RealInnerProductSpace
Formal statement
namespace Hirsch
theorem cube_blend_vertex_count (d : ℕ) (hd : 2 ≤ d) :
(blendPoly d).Nonempty ∧ Bornology.IsBounded (blendPoly d) ∧
∃ V : Finset (EuclideanSpace ℝ (Fin d)),
(V : Set (EuclideanSpace ℝ (Fin d))) = Set.extremePoints ℝ (blendPoly d) ∧
V.card = 2 ^ (d + 1) - 2 := 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' Sections 2.1-2.2 (audited with exact basis enumeration for d=3,4)