Graph Coloring and Brooks' Theorem
Definition
A function for a loop-free graph is called a -coloring of . If a graph has a -coloring, it is also said to be -colorable. If it is -colorable but not -colorable, then that is called the Chromatic Number of , denoted as . A graph whose chromatic number is is called a -chromatic graph.
- A loop refers to an edge that connects a vertex to itself.
- represents a set of natural numbers from to . The notion of natural numbers isn’t significantly important here; as long as there are different elements, it can abstractly serve as the range for coloring. For example, using is fine, but there wouldn’t be any fundamental difference from using , thus we use natural numbers.
Explanation
Graph coloring in layman’s terms is the mapping—coloring of adjacent vertices with different colors. Since there can be numerous such functions, naturally, our interest lies in minimal coloring, hence the expression colorable is seldom used.
The problem of determining the chromatic number of a graph has always received attention in combinatorial mathematics, among which the notorious Four Color Theorem was a famous problem for a time. Generally, these problems are of the NP class, still awaiting proofs of innovative algorithms and theorems.
The simplest thinkable coloration for any graph is to color the vertices with different colors. Such coloring is termed Greedy Coloring, which is obviously the most naive approach. Depending on the properties of the graph, various theorems like the following are known. Among the first theorems one encounters and the most famous when approaching graph coloring is Brooks’ theorem.
Theorems 1
- [1]: For Complete Graphs: and for null graph
- [2]: It is equivalent for , not being a null graph, to be a bipartite graph and .
- [3]: Let the highest degree of simple graph be ,
- [4]: Let the number of edges in be ,
- [5] Brooks’ Theorem: A simple connected graph , if not a complete graph and if the maximum degree is , then is
Wilson. (1970). Introduction to Graph Theory: p82. ↩︎