proven
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
-
no assumptions
thm✓Lax17.EdgeMenger
Theorem
The edge form of Menger's theorem gives an exact alternative between edge-disjoint paths inside a cluster and a cut partition with boundary of size less than .
Lean source view on GitHub
| 1 | import Lax17.Paths |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Edge-Menger theorem |
| 6 | type: theorem |
| 7 | --- |
| 8 | The edge form of Menger's theorem gives an exact alternative between |
| 9 | \(k\) edge-disjoint paths inside a cluster and a cut partition with boundary |
| 10 | of size less than \(k\). |
| 11 | -/ |
| 12 | |
| 13 | namespace Lax17.EdgeMenger |
| 14 | |
| 15 | universe u |
| 16 | |
| 17 | /-- Finite edge-Menger in packing-or-cut form. -/ |
| 18 | axiom edgeMenger : |
| 19 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 20 | (G : SimpleGraph V) (C A B : Finset V) (k : ℕ), |
| 21 | A ⊆ C → |
| 22 | B ⊆ C → |
| 23 | Disjoint A B → |
| 24 | (∃ P : Lax17.Paths.EdgeLinkage G A B k, |
| 25 | ∀ i : Fin k, (P.path i).StaysIn C) ∨ |
| 26 | Nonempty (Lax17.Paths.EdgeCutPartition G C A B k) |
| 27 | |
| 28 | end Lax17.EdgeMenger |
| 29 |
Community review
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.
0 comments