Dimension drop for facet access from a ridge-visible vertex
ProvedHirsch.ridge_visible_accesshirsch-conjecturepolytopes
Let be a bounded H-polytope with rows, a vertex, and two rows with nonzero normals such that is tight at and rows and meet inside (the facet through sees the target face across a ridge). If every bounded H-polytope in with rows has facet access at most , then some vertex of on row is reachable from by a padded walk of length .
Proof idea. Chart the face of row as a -polytope with rows (the platform's Hirsch.facet_walk); row restricted to it is a nonempty face; apply the hypothesis there and push the walk back into , where it stays on the face of row .
Together with Hirsch.access_of_ridge_visible_access, this reduces polynomial facet access to reaching a ridge-visible vertex in polynomially many steps.
Preamble
import Mathlib import Definitions.Def_Hirsch_model import Definitions.Def_Hirsch_walk open scoped RealInnerProductSpace
Formal statement
namespace Hirsch
theorem ridge_visible_access (d k : ℕ)
(a : Fin (k + 1) → EuclideanSpace ℝ (Fin d)) (b : Fin (k + 1) → ℝ)
(hbd : Bornology.IsBounded (Hpoly a b))
(u : EuclideanSpace ℝ (Fin d)) (hu : u ∈ Set.extremePoints ℝ (Hpoly a b))
(i r : Fin (k + 1)) (hir : i ≠ r) (hai : a i ≠ 0) (har : a r ≠ 0)
(hru : ⟪a r, u⟫ = b r)
(hridge : ∃ x ∈ Hpoly a b, ⟪a i, x⟫ = b i ∧ ⟪a r, x⟫ = b r)
(B : ℕ)
(IH : ∀ (a' : Fin k → EuclideanSpace ℝ (Fin (d - 1))) (b' : Fin k → ℝ),
Bornology.IsBounded (Hpoly a' b') →
∀ u' ∈ Set.extremePoints ℝ (Hpoly a' b'),
∀ i' : Fin k, a' i' ≠ 0 →
(∃ x' ∈ Hpoly a' b', ⟪a' i', x'⟫ = b' i') →
∃ z' ∈ Set.extremePoints ℝ (Hpoly a' b'), ⟪a' i', z'⟫ = b' i' ∧
Reach (Hpoly a' b') B u' z') :
∃ z ∈ Set.extremePoints ℝ (Hpoly a b), ⟪a i, z⟫ = b i ∧
Reach (Hpoly a b) B u z := by sorry
end HirschSource
Campaign research notes (2026-09-06), Prove2Me mission 'The Polynomial Hirsch Conjecture', discussion thread; independently audited on-paper proofs, note 'access_grok' Lemma 2.5; platform theorem Hirsch.facet_walk (c2ce1a4d-7f43-423d-9408-57eb09cc552a)