Lax68.KuratowskiPlanarity
Kuratowski's theorem in straight-line form
concepts/Lax68/KuratowskiPlanarity.lean · lax-68
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
Each proof establishes this claim relative to its assumptions.
No proof in the archive yet — this claim is open.
Theorem
A finite simple graph admits a crossing-free straight-line drawing exactly when it contains no subdivision of K₅ or K₃,₃. This is Kuratowski's theorem together with Fáry's straight-line drawing theorem.
Lean source view on GitHub
| 1 | import Lax68.GraphTopologicalMinors |
| 2 | import Lax68.Planar |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Kuratowski's theorem in straight-line form |
| 7 | type: theorem |
| 8 | --- |
| 9 | A finite simple graph admits a crossing-free straight-line drawing exactly |
| 10 | when it contains no subdivision of *K₅* or *K₃,₃*. This is Kuratowski's |
| 11 | theorem together with Fáry's straight-line drawing theorem. |
| 12 | -/ |
| 13 | |
| 14 | set_option autoImplicit false |
| 15 | |
| 16 | namespace Lax68.KuratowskiPlanarity |
| 17 | |
| 18 | axiom planar_iff_kuratowskiFree |
| 19 | {V : Type*} {G : SimpleGraph V} : |
| 20 | Finite V → |
| 21 | (Lax68.Planar.IsPlanar G ↔ |
| 22 | Lax68.GraphTopologicalMinors.IsKuratowskiFree G) |
| 23 | |
| 24 | end Lax68.KuratowskiPlanarity |
| 25 |
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