Independent Set without a 5×5 induced grid minor
Lax762056.IndependentSetHardness · concepts/Lax762056/IndependentSetHardness.lean · lax-762056
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
Deciding whether a graph has an independent set of size at least is NP-hard even when the graph excludes the grid as an induced minor. Consequently, Maximum Independent Set is NP-hard on this class.
Concept map
Evidence
Each proof establishes this claim relative to its assumptions.
Lean source view on GitHub
| 1 | import Lax762056.Grid |
| 2 | import Lax762056.GraphProblems |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Independent Set without a 5×5 induced grid minor |
| 7 | type: theorem |
| 8 | --- |
| 9 | Deciding whether a graph has an independent set of size at least is |
| 10 | NP-hard even when the graph excludes the grid as an induced minor. |
| 11 | Consequently, Maximum Independent Set is NP-hard on this class. |
| 12 | -/ |
| 13 | |
| 14 | namespace Lax762056.IndependentSetHardness |
| 15 | |
| 16 | open GraphProblems Grid |
| 17 | |
| 18 | axiom independentSet_inducedGrid_hardness : |
| 19 | NPHardOn IndependentSet (ExcludesInducedGrid 5) |
| 20 | |
| 21 | end Lax762056.IndependentSetHardness |
| 22 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments