Lax17.HindOellermann
Hind–Oellermann deletion–contraction theorem
concepts/Lax17/HindOellermann.lean · lax-17
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
Theorem
Deleting or contracting a nonterminal edge preserves terminal element-connectivity.
Lean source view on GitHub
| 1 | import Lax17.TerminalConnectivity |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Hind--Oellermann deletion--contraction theorem |
| 6 | type: theorem |
| 7 | --- |
| 8 | Deleting or contracting a nonterminal edge preserves terminal |
| 9 | element-connectivity. |
| 10 | -/ |
| 11 | |
| 12 | namespace Lax17.HindOellermann |
| 13 | |
| 14 | universe u |
| 15 | |
| 16 | /-- Hind--Oellermann deletion--contraction for terminal element |
| 17 | connectivity. -/ |
| 18 | axiom hindOellermannDeletionContraction : |
| 19 | ∀ {V : Type u} [Fintype V] [DecidableEq V] |
| 20 | (H : Lax17.TerminalConnectivity.EdgeIndexedGraph V) |
| 21 | (terminals : Finset V) (k : ℕ) (e₀ : H.Edge), |
| 22 | H.left e₀ ∉ terminals → H.right e₀ ∉ terminals → |
| 23 | H.TerminalElementConnectedAtLeast terminals k → |
| 24 | (H.deleteEdge e₀).TerminalElementConnectedAtLeast terminals k ∨ |
| 25 | ∃ (W : Type u) (_ : Fintype W) (_ : DecidableEq W) |
| 26 | (K : Lax17.TerminalConnectivity.EdgeIndexedGraph W) |
| 27 | (mapVertex : V → W), |
| 28 | Nonempty (H.IsContraction e₀ K mapVertex) ∧ |
| 29 | K.TerminalElementConnectedAtLeast |
| 30 | (Lax17.TerminalConnectivity.EdgeIndexedGraph.terminalImage |
| 31 | mapVertex terminals) k |
| 32 | |
| 33 | end Lax17.HindOellermann |
| 34 |
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