Erdős problem 628
Let be a graph with chromatic number containing no . If and then must there exist two disjoint subgraphs of with chromatic numbers and respectively?
Sources
FormalConjectures/ErdosProblems/
628.lean
Retained formal statement
Let be a graph with chromatic number containing no . If and then must there exist two disjoint subgraphs of with chromatic numbers and respectively?
∀ (V : Type u_1) [Fintype V] (G : SimpleGraph V) (k : ℕ), G.chromaticNumber = ↑k → G.CliqueFree k → ∀ (a b : ℕ), a ≥ 2 → b ≥ 2 → a + b = k + 1 → ∃ s, (SimpleGraph.induce s G).chromaticNumber ≥ ↑a ∧ (SimpleGraph.induce sᶜ G).chromaticNumber ≥ ↑bOpenStatement only, no proof