definition
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Definition
A graph contains a square grid minor of order when the canonical square grid is a minor of it.
Because graph-minor containment is invariant under relabelling, choosing the canonical coordinate grid loses no generality.
Lean source view on GitHub
| 1 | import Lax17.Grid |
| 2 | import Lax17.Minor |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Square grid minors |
| 7 | type: definition |
| 8 | --- |
| 9 | A graph contains a square grid minor of order \(g\) when the canonical |
| 10 | \(g\times g\) square grid is a minor of it. |
| 11 | |
| 12 | Because graph-minor containment is invariant under relabelling, choosing the |
| 13 | canonical coordinate grid loses no generality. |
| 14 | -/ |
| 15 | |
| 16 | namespace Lax17.GridMinor |
| 17 | |
| 18 | universe u |
| 19 | |
| 20 | /-- `G` contains the `g × g` square grid as a minor. -/ |
| 21 | def ContainsGridMinor {V : Type u} (G : SimpleGraph V) (g : ℕ) : Prop := |
| 22 | Lax17.Minor.IsMinor (Lax17.Grid.squareGrid g) G |
| 23 | |
| 24 | end Lax17.GridMinor |
| 25 |
Builds on
Used by
From Mathlib
none
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