3-connected graphs
Lax881656.ThreeConnected · concepts/Lax881656/ThreeConnected.lean · lax-881656
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Definition
A finite simple graph is 3-connected when it has at least four vertices and remains connected after deleting any set of at most two vertices.
Concept map
Lean source view on GitHub
| 1 | import Mathlib.Combinatorics.SimpleGraph.Connectivity.Connected |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: 3-connected graphs |
| 6 | type: definition |
| 7 | --- |
| 8 | A finite simple graph is 3-connected when it has at least four vertices and |
| 9 | remains connected after deleting any set of at most two vertices. |
| 10 | |
| 11 | # Formalization notes |
| 12 | |
| 13 | Deleting a finite set `S` is represented by the induced graph on the subtype |
| 14 | of vertices outside `S`. The cardinality condition rules out the small graphs |
| 15 | for which deletion-connectivity alone would make the usual definition |
| 16 | degenerate. |
| 17 | -/ |
| 18 | |
| 19 | set_option autoImplicit false |
| 20 | |
| 21 | namespace Lax881656.ThreeConnected |
| 22 | |
| 23 | /-- A finite graph is 3-connected if deleting at most two vertices leaves a |
| 24 | connected graph, and the original graph has at least four vertices. -/ |
| 25 | def IsThreeConnected {V : Type*} [Fintype V] [DecidableEq V] |
| 26 | (G : SimpleGraph V) : Prop := |
| 27 | 4 ≤ Fintype.card V ∧ |
| 28 | ∀ S : Finset V, S.card ≤ 2 → |
| 29 | (G.induce {v : V | v ∉ S}).Connected |
| 30 | |
| 31 | end Lax881656.ThreeConnected |
| 32 |
Formalization notes
Deleting a finite set is represented by the induced graph on the subtype of vertices outside . The cardinality condition rules out the small graphs for which deletion-connectivity alone would make the usual definition degenerate.
Builds on
none
Used by
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments