Draft — mutable and not usable as a dependency; its citation marks the draft state.

Lax9.ChiBoundedness

χ-Boundedness

concepts/Lax9/ChiBoundedness.lean · Lax9

nothing to prove

Definition

A class of finite simple graphs is χ-bounded if the chromatic number of each graph in the class is bounded by a function of its clique number.

Lean source view on GitHub

1import Lax9.MergeWidth
2
3/-!
4---
5title: χ-Boundedness
6type: definition
7---
8A class of finite simple graphs is χ-bounded if the chromatic number of each
9graph in the class is bounded by a function of its clique number.
10-/
11
12namespace Lax9.ChiBoundedness
13
14open Lax9.MergeWidth
15
16/-- A graph class $C$ is χ-bounded if there is a function $f$ such that every
17$G ∈ C$ is $f(ω(G))$-colourable. -/
18def ChiBounded (C : GraphClass) : Prop :=
19 ∃ f : ℕ → ℕ, ∀ ⦃V : Type⦄ [Fintype V] (G : SimpleGraph V), C G →
20 G.Colorable (f G.cliqueNum)
21
22end Lax9.ChiBoundedness
23

Mathlib imports

none