proven
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Theorem
The vertex form of Menger's theorem gives an exact alternative between vertex-disjoint terminal-to-terminal paths and a separator of size less than .
Lean source view on GitHub
| 1 | import Lax17.Paths |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Vertex-Menger theorem |
| 6 | type: theorem |
| 7 | --- |
| 8 | The vertex form of Menger's theorem gives an exact alternative between |
| 9 | \(k\) vertex-disjoint terminal-to-terminal paths and a separator of size |
| 10 | less than \(k\). |
| 11 | -/ |
| 12 | |
| 13 | namespace Lax17.VertexMenger |
| 14 | |
| 15 | universe u |
| 16 | |
| 17 | /-- Finite vertex-Menger in packing-or-separator form. -/ |
| 18 | axiom vertexMenger : |
| 19 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 20 | (G : SimpleGraph V) (A B : Finset V) (k : ℕ), |
| 21 | Nonempty (Lax17.Paths.VertexLinkage G A B k) ∨ |
| 22 | ∃ X : Finset V, |
| 23 | X.card < k ∧ Lax17.Paths.IsVertexSeparator G A B X |
| 24 | |
| 25 | end Lax17.VertexMenger |
| 26 |
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