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

Lax9.ChiBoundedness

χ-Boundedness

concepts/Lax9/ChiBoundedness.lean · lax-9

definition

Loading review…

Sign in with ORCID

Community review

Flags

Each flag is tied to a public ORCID identity and explains why this concept may be incorrect.

No flags have been submitted.

    Community review

    Flag this concept

    State precisely what appears incorrect. This explanation will be public under your ORCID name.

    No source line selected.

    Concept map

    Proven claimDefinitionThis conceptRelated conceptA → B: B builds on A

    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 CC is χ-bounded if there is a function ff such that every
    17GCG ∈ C is f(ω(G))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

    From Mathlib

    none

    Community review

    Discussion

    Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.

    0 comments

    Loading discussion…