Santos: the Hirsch conjecture is false
ProvedHirsch.santos_counterexample(Santos 2012.) There exists a nonempty bounded H-polytope violating the Hirsch bound: for some , , and inequalities , the polytope has two vertices joined by no path of at most edges. Santos's original example has dimension with facets and diameter at least ; Matschke, Santos, and Weibel later found one of dimension with facets and diameter . Boundedness is essential — the unbounded version was already refuted by Klee--Walkup in 1967 — and is part of the statement.
import Mathlib import Definitions.Def_Hirsch_model
namespace Hirsch
theorem santos_counterexample :
∃ (d n : ℕ) (a : Fin n → EuclideanSpace ℝ (Fin d)) (b : Fin n → ℝ),
(Hpoly a b).Nonempty ∧ Bornology.IsBounded (Hpoly a b) ∧
¬ DiamLE (Hpoly a b) (n - d) := by sorry
end HirschRead-back
What the Lean code literally says, in plain math · claude-fable-5
Read-back: Hirsch.santos_counterexample
The theorem asserts the existence of natural numbers and (both existentially quantified, with no lower bounds — or are not excluded by the statement itself), together with a family of vectors (Euclidean space with the standard inner product) and real numbers , such that the set
(the solution set of the non-strict linear inequalities; when this would be all of ) satisfies all three of the following:
-
is nonempty.
-
is bounded (in the sense of the metric/bornology of ).
-
The "diameter at most " predicate fails for , where is truncated natural-number subtraction (equal to whenever ). Spelled out, the predicate that is being negated says: for every pair of extreme points of (extreme points of as a subset of , i.e. points of that do not lie strictly inside any segment whose endpoints are in ), there exists a sequence of points (indexed by all of , with only the first terms constrained) such that
- and , and
- for each index , either (a stationary step), or and are "adjacent on ", meaning and the closed segment is an extreme subset of (i.e. , and whenever a point of lies in the open segment between two points of , both of those points already belong to ).
The negation (item 3) therefore asserts: there exist extreme points of for which no such sequence of steps (each step stationary or crossing such an "adjacent" pair) leads from to .
Note that the intermediate points of a walk are quantified over all of ; they are only forced to relate to through the adjacency condition on non-stationary steps (a stationary step imposes no membership in ). Also note that if had at most one extreme point, or none, the diameter predicate would hold vacuously, so item 3 implicitly forces to have at least two distinct extreme points. The statement does not require the walk length bound to be positive, does not require , does not require the polytope to be full-dimensional or simple, and does not assert anything about which specific and witness the claim.
Confirmed by the mission captain (proposal self-audit).