Hadwiger's conjecture for t = 7
Lax332265.HadwigerT7 · concepts/Lax332265/HadwigerT7.lean · lax-332265
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Opn
Every finite graph with no K₇ minor is 6-colourable. This is the first open case of Hadwiger's conjecture.
Concept map
Evidence
Each proof establishes this claim relative to its assumptions.
No proof in the archive yet — this claim is open.
Lean source view on GitHub
| 1 | import Lax68.GraphMinors |
| 2 | import Lax332265.SixColorable |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Hadwiger's conjecture for t = 7 |
| 7 | type: opn |
| 8 | --- |
| 9 | Every finite graph with no *K*₇ minor is 6-colourable. This is the first open |
| 10 | case of Hadwiger's conjecture. |
| 11 | |
| 12 | # Formalization notes |
| 13 | |
| 14 | Finite graphs are stated on the canonical carriers `Fin n`. The complete |
| 15 | seven-vertex graph is written directly as `SimpleGraph.completeGraph (Fin 7)`; |
| 16 | introducing a named abbreviation would add no reusable notion beyond the |
| 17 | existing complete-graph construction. |
| 18 | |
| 19 | The minor relation is exactly `Lax68.GraphMinors.IsMinor` from the Planar |
| 20 | Graph Classes submission: a minor model consists of pairwise disjoint, |
| 21 | connected branch sets, with an edge between the appropriate branch sets for |
| 22 | every edge of the modeled graph. Six-colourability is the separate definition |
| 23 | introduced by this submission. |
| 24 | |
| 25 | # Research directions |
| 26 | |
| 27 | Potential intermediate cases add structure to the excluded-minor hypothesis, |
| 28 | for example by bounding the independence number, excluding specified induced |
| 29 | subgraphs, or requiring a special graph decomposition. These strengthen the |
| 30 | hypotheses but leave the conclusion unchanged. |
| 31 | -/ |
| 32 | |
| 33 | namespace Lax332265.HadwigerT7 |
| 34 | |
| 35 | /-- Hadwiger's conjecture at `t = 7`: excluding a `K₇` minor guarantees a |
| 36 | proper colouring with six colours. -/ |
| 37 | axiom sixColorable_of_no_K7_minor : |
| 38 | ∀ (n : ℕ) (G : SimpleGraph (Fin n)), |
| 39 | ¬ Lax68.GraphMinors.IsMinor |
| 40 | (SimpleGraph.completeGraph (Fin 7)) G → |
| 41 | Lax332265.SixColorable.IsSixColorable G |
| 42 | |
| 43 | end Lax332265.HadwigerT7 |
| 44 |
Formalization notes
Finite graphs are stated on the canonical carriers . The complete seven-vertex graph is written directly as ; introducing a named abbreviation would add no reusable notion beyond the existing complete-graph construction.
The minor relation is exactly from the Planar Graph Classes submission: a minor model consists of pairwise disjoint, connected branch sets, with an edge between the appropriate branch sets for every edge of the modeled graph. Six-colourability is the separate definition introduced by this submission.
Research directions
Potential intermediate cases add structure to the excluded-minor hypothesis, for example by bounding the independence number, excluding specified induced subgraphs, or requiring a special graph decomposition. These strengthen the hypotheses but leave the conclusion unchanged.
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments