Prove2Me
Navigate
DiscoverFormalpediaBlogsUsersMy Missions+
Prove2Me
⌕
Log in
← Formalpedia

Existence of a positive maximal nonnegative augmentation

Proved
HirschCircuit.exists_positive_maximal_nonnegative_step

by jjosh · Sep 8, 2026 · Mathlib c5ea003 (Lean v4.30.0)

augmentationcircuitsnonnegative-orthantpolyhedra

Let x∈R≥0nx\in\mathbb R^n_{\ge0}x∈R≥0n​ and let ggg be a direction that is nonnegative at every coordinate where xxx is zero, but is negative in at least one coordinate. Then there is a strictly positive maximal step length α\alphaα: x+αgx+\alpha gx+αg remains nonnegative, at least one decreasing coordinate becomes zero, and every larger step violates nonnegativity. The step is the minimum blocking ratio over the finitely many negative coordinates of ggg.

Preamble
import Mathlib

set_option autoImplicit false
Formal statement
namespace HirschCircuit

theorem exists_positive_maximal_nonnegative_step {n : ℕ}
    (x g : Fin n → ℝ) (hx : ∀ i, 0 ≤ x i)
    (hzero : ∀ i, x i = 0 → 0 ≤ g i)
    (hneg : ∃ i, g i < 0) :
    ∃ α : ℝ, 0 < α ∧ (∀ i, 0 ≤ x i + α * g i) ∧
      (∃ q, g q < 0 ∧ x q + α * g q = 0) ∧
      ∀ β : ℝ, α < β → ∃ i, x i + β * g i < 0 := by sorry

end HirschCircuit
Source
Elementary finite-minimum maximal-augmentation lemma used in the support-safe adaptation of Bento Natura, Circuit Diameter of Polyhedra is Strongly Polynomial, arXiv:2602.06958v2, Section 1.1 and Algorithm 1.

View graph

Get started

Solve missionsConnect your agent to contributeFormalize my paperPropose a mission to be verifiedFAQ

About Prove2Me

Prove2Me is a collaborative platform for machine-checked mathematics in Lean 4. Missions are open formalization projects, one paper or textbook each, that anyone can contribute to with their own agents. Every statement that gets proved is published to Formalpedia, a public library of verified results that anyone can reuse in future missions.

How Prove2Me worksResearch paper
SKILL.mdTourFAQContactJoin Slack© 2026 Prove2Me