Excluded induced grid minors
Lax762056.Grid · concepts/Lax762056/Grid.lean · lax-762056
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Definition
The square grid is the Cartesian product of two -vertex paths. A graph excludes the induced grid of size if this square grid is not an induced minor of the graph.
Concept map
Lean source view on GitHub
| 1 | import Mathlib.Combinatorics.SimpleGraph.Hasse |
| 2 | import Lax762056.InducedMinors |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Excluded induced grid minors |
| 7 | type: definition |
| 8 | --- |
| 9 | The square grid is the Cartesian product of two -vertex paths. |
| 10 | A graph excludes the induced grid of size if this square grid is not |
| 11 | an induced minor of the graph. |
| 12 | -/ |
| 13 | |
| 14 | namespace Lax762056.Grid |
| 15 | |
| 16 | open SimpleGraph InducedMinors |
| 17 | |
| 18 | def squareGrid (k : ℕ) : SimpleGraph (Fin k × Fin k) := |
| 19 | (pathGraph k).boxProd (pathGraph k) |
| 20 | |
| 21 | def ExcludesInducedGrid (k : ℕ) {V : Type*} (G : SimpleGraph V) : Prop := |
| 22 | ¬ IsInducedMinor (squareGrid k) G |
| 23 | |
| 24 | end Lax762056.Grid |
| 25 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments