Conformal elementary decomposition with an ambient-coordinate bound
ProvedHirschCircuit.elementary_conformal_decomposition_ambient_boundcircuitsconformal-decompositionlinear-algebrapolyhedra
Every vector in a real linear subspace can be written as a sum of at most nonzero support-minimal vectors of . Each summand has the same closed-orthant signs as and is coordinatewise no larger in absolute value. The zero vector is represented by the empty sum. This ambient-coordinate bound does not assert a maximal circuit-walk bound or the sharper dimension bound.
Preamble
import Definitions.Def_Hirsch_circuit_slack_model set_option autoImplicit false
Formal statement
theorem HirschCircuit.elementary_conformal_decomposition_ambient_bound {n : ℕ}
(K : Submodule ℝ (Fin n → ℝ)) (z : Fin n → ℝ) (hz : z ∈ K) :
∃ gs : List (Fin n → ℝ), gs.length ≤ n ∧
(∀ g ∈ gs, HirschCircuit.IsElementaryIn K g ∧
∀ i, 0 ≤ g i * z i ∧ |g i| ≤ |z i|) ∧ gs.sum = z := by sorrySource
Bento Natura, Circuit Diameter of Polyhedra is Strongly Polynomial, arXiv:2602.06958v2, Definition 2.1 and Lemma 2.2. Matrix-free ambient-coordinate relaxation, proved by support-cardinality induction; no novelty claim.