/-
Copyright 2025 The Formal Conjectures Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-/
import FormalConjecturesUtilReed's omega, delta, and chi conjecture
open Classicalopen scoped Finset
namespace ReedOmegaDeltaChi
For a graph $G$, we define $\Delta(G)$ to be the maximum degree, $\omega(G)$ to be the size of the largest clique subgraph, and $\chi(G)$ to be the chromatic number. Reed's omega, delta, and chi conjecture states that $$\chi(G) \leq \lceil \frac{1}{2}(\omega(G) + \Delta(G) + 1) \rceil.$$
@[category research open, AMS 5]
theorem reed_omega_delta_chi_conjecture :
∀ {V : Type} (G : SimpleGraph V),
let χ := G.chromaticNumber
let ω := G.ecliqueNum
let Δ := G.emaxDegree
2 * χ ≤ ω + Δ + 2 := ⊢ ∀ {V : Type} (G : SimpleGraph V),
let χ := G.chromaticNumber;
let ω := G.ecliqueNum;
let Δ := G.emaxDegree;
2 * χ ≤ ω + Δ + 2
All goals completed! 🐙
For a finite graph $G$, we define $\Delta(G)$ to be the maximum degree, $\omega(G)$ to be the size of the largest clique subgraph, and $\chi(G)$ to be the chromatic number. Reed's omega, delta, and chi conjecture states that $$\chi(G) \leq \lceil \frac{1}{2}(\omega(G) + \Delta(G) + 1) \rceil.$$
@[category research open, AMS 5]
theorem reed_omega_delta_chi_conjecture_for_finite_graphs :
∀ {V : Type} [Fintype V] [DecidableEq V] (G : SimpleGraph V) [DecidableRel G.Adj],
let χ := G.chromaticNumber
let ω := G.cliqueNum
let Δ := G.maxDegree
2 * χ ≤ ω + Δ + 2 := ⊢ ∀ {V : Type} [inst : Fintype V] [DecidableEq V] (G : SimpleGraph V) [inst_2 : DecidableRel G.Adj],
let χ := G.chromaticNumber;
let ω := G.cliqueNum;
let Δ := G.maxDegree;
2 * χ ≤ ↑ω + ↑Δ + 2
All goals completed! 🐙
The simplest open case is when $\Delta(G) = 6$ and $\omega(G) = 2$.
@[category research open, AMS 5]
theorem reed_conjecture_Δ_6_ω_2 :
∀ {V : Type} (G : SimpleGraph V), G.emaxDegree = 6 ∧ G.cliqueNum = 2 → G.chromaticNumber ≤ 5 := ⊢ ∀ {V : Type} (G : SimpleGraph V), G.emaxDegree = 6 ∧ G.cliqueNum = 2 → G.chromaticNumber ≤ 5
All goals completed! 🐙
end ReedOmegaDeltaChi