Common tight rows of an edge have rank at least
ProvedHirsch.adj_tight_rows_rankhirsch-conjecturepolytopes
Let and let be adjacent (the segment is a nontrivial extreme subset of , the mission's Adj). Then the normals of the rows tight at both and span a subspace of dimension at least :
Otherwise a direction orthogonal to all common tight normals and not parallel to would let the midpoint of move inside off the segment, contradicting extremality of the edge. Used to bound the combinatorial neighbourhoods in the polar of the Matschke--Santos--Weibel prismatoid .
Formalization Note Submodule.span of the image of the common tight index set; the inequality is stated in with on the right so it is meaningful when .
Preamble
import Mathlib import Definitions.Def_Hirsch_model open scoped RealInnerProductSpace
Formal statement
namespace Hirsch
theorem adj_tight_rows_rank (d n : ℕ) (a : Fin n → EuclideanSpace ℝ (Fin d)) (b : Fin n → ℝ)
(x y : EuclideanSpace ℝ (Fin d)) (hadj : Adj (Hpoly a b) x y) :
d ≤ Module.finrank ℝ (Submodule.span ℝ
(a '' {j | ⟪a j, x⟫ = b j ∧ ⟪a j, y⟫ = b j})) + 1 := by sorry
end Hirsch