![]() |
|||||||||||||
|
Vertex chromatic number |
In graph theory, graph coloring is a special case of graph labeling; it is an assignment of labels traditionally called "colors" to elements of a graph subject to certain constraints. In its simplest form, it is a way of coloring the vertices of a graph such that no two adjacent vertices share the same color; this is called a vertex coloring. Similarly, an edge coloring assigns a color to each edge so that no two adjacent edges share the same color, and a face coloring of a planar graph assigns a color to each face or region so that no two faces that share a boundary have the same color.
Vertex coloring is the starting point of the subject, and other coloring problems can be transformed into a vertex version. For example, an edge coloring of a graph is just a vertex coloring of its line graph, and a face coloring of a planar graph is just a vertex coloring of its planar dual. However, non-vertex coloring problems are often stated and studied as is. That is partly for perspective, and partly because some problems are best studied in non-vertex form, as for instance is edge coloring.
The convention of using colors originates from coloring the countries of a map, where each face is literally colored. This was generalized to coloring the faces of a graph embedded in the plane. By planar duality it became coloring the vertices, and in this form it generalizes to all graphs. In mathematical and computer representations it is typical to use the first few positive or nonnegative integers as the "colors". In general one can use any finite set as the "color set". The nature of the coloring problem depends on the number of colors but not on what they are.
Graph coloring enjoys many practical applications as well as theoretical challenges. Beside the classical types of problems, different limitations can also be set on the graph, or on the way a color is assigned, or even on the color itself. It has even reached popularity with the general public in the form of the popular number puzzle Sudoku. Graph coloring is still a very active field of research.
Note: Many terms used in this article are defined in the glossary of graph theory.
Contents |
The first results about graph coloring deal almost exclusively with planar graphs in the form of the coloring of maps. While trying to color a map of the counties of England, Francis Guthrie postulated the four color conjecture, noting that four colors were sufficient to color the map so that no regions sharing a common border received the same color. Guthrie’s brother passed on the question to his mathematics teacher Augustus de Morgan at University College, who mentioned it in a letter to William Hamilton in 1852. Arthur Cayley raised the problem at a meeting of the London Mathematical Society in 1879. Over a century of failed attempts to establish the conjecture followed, until the four colour theorem was finally proved in 1976, a result that is also noteworthy for being the first major computer-aided proof.
In 1912, Birkhoff introduced the chromatic polynomial to study the coloring problems, which was generalised to the Tutte polynomial by Tutte, important structures in algebraic graph theory. Kempe had already drawn attention to the general, non-planar case in 18791, and many results on generalisations of planar graph coloring to surfaces of higher order followed in the early 20th century.
Graph coloring has been studied as an algorithmic problem since the early 1970s. The chromatic number problem is one of Karp’s 21 NP-complete problems from 1972, around the time of various exponential-time algorithms based on backtracking and Zykov’s deletion--contraction recurrence from 19492. One of the major applications of graph coloring, register allocation in compilers was introduced in 1981.
When used without any qualification, a coloring of a graph is always assumed to be a vertex coloring, namely an assignment of colors to the vertices of the graph. Again, when used without any qualification, a coloring is nearly always assumed to be proper, meaning no two adjacent vertices are assigned the same color. Here, "adjacent" means sharing the same edge. A coloring using at most k colors is called a (proper) k-coloring and is equivalent to the problem of partitioning the vertex set into k or fewer independent sets.
The least number of colors needed to color a graph G is called its chromatic number, χ(G). For example the chromatic number of a complete graph Kn of n vertices (a graph with an edge between every two vertices), is χ(Kn) = n. A graph that can be assigned a (proper) k-coloring is k-colorable, and it is k-chromatic if its chromatic number is exactly k.
Some properties of χ(G):
For planar graphs, vertex colorings are essentially dual to nowhere-zero flows.
About infinite graphs, much less is known. The following is one of the few results about infinite graph coloring:
The chromatic number of the plane, where two points are adjacent if they have unit distance, is unknown, although it is one of 4, 5, 6, or 7. Other open problems concerning the chromatic number of graphs include the Hadwiger conjecture stating that every graph with chromatic number k has a complete graph on k vertices as a minor, and the Erdős–Faber–Lovász conjecture bounding the chromatic number of unions of complete graphs that have at exactly one vertex in common to each pair.
The chromatic polynomial counts the number of ways a graph can be colored using no more than a given number of colors. For example, using three colors, the graph in the image to the right can be colored in 12 ways. With only two colors, it cannot be colored at all. With four colors, it can be colored in 24 + 4⋅12 = 72 ways: using all four colors, there are 4! = 24 valid colorings (every assignment of four colors to any 4-vertex graph is a proper coloring); and for every choice of three of the four colors, there are 12 valid 3-colorings. So, for the graph in the example, a table of the number of valid colorings would start like this:
| Available colors | 1 | 2 | 3 | 4 | … |
| Number of colorings | 0 | 0 | 12 | 72 | … |
The chromatic polynomial is a function P(G,t) that counts the number of t-colorings of G. As the name indicates, for a given G the function is indeed a polynomial in t. For the example graph, P(G,t) = t(t − 1)2(t − 2), and indeed P(G,4) = 72.
The chromatic polynomial includes at least as much information about the colorability of G as does the chromatic number. Indeed, χ is the smallest positive integer that is not a root of the chromatic polynomial,
It was first used by Birkhoff and Lewis in their attack on the four-color theorem. They conjectured that, for a planar graph G, P(G,t) has no zeros in the region
. Although it is known that such a chromatic polynomial has no zeros in the region
and that
. Their conjecture is still unresolved.
It remains an unsolved problem to characterize graphs which have the same chromatic polynomial and to determine precisely which polynomials are chromatic.
| Triangle K3 | t(t − 1)(t − 2) |
| Complete graph Kn | ![]() |
| Tree with n vertices | t(t − 1)n − 1 |
| Cycle Cn | (t − 1)n + ( − 1)n(t − 1) |
| Petersen graph | t(t − 1)(t − 2)(t7 − 12t6 + 67t5 − 230t4 + 529t3 − 814t2 + 775t − 352) |
are all zero.
Not only can the idea of vertex coloring be extended to edges, but also be added with different conditions to form new structures and problems.
| Edge coloring | Edges are colored |
| List coloring | Each vertex chooses from a list of colors |
| List edge-coloring | Each edge chooses from a list of colors |
| Total coloring | Vertices and edges are colored |
| Harmonious coloring | Every pair of colors appears on at most one edge |
| Complete coloring | Every pair of colors appears on at least one edge |
| Exact coloring | Every pair of colors appears on exactly one edge |
| Acyclic coloring | Every 2-chromatic subgraph is acyclic |
| Strong coloring | Every color appears in every partition of equal size exactly once |
| Strong edge coloring | Edges are colored such that each color class induces a matching (equivalent to coloring the square of the line graph) |
| On-line coloring | The instance of the problem is not given in advance and its successive parts become known over time |
| Equitable coloring | The sizes of color classes differ by at most one |
| Sum-coloring | The criterion of minimalization is the sum of colors |
| T-coloring | Distance between two colors of adjacent vertices must not belong to fixed set T |
| Rank coloring | If two vertices have the same color i, then every path between them contain a vertex with color greater than i |
| Interval edge-coloring | A color of edges meeting in a common vertex must be contiguous |
| Circular coloring | Motivated by task systems in which production proceeds in a cyclic way |
| Path coloring | Models a routing problem in graphs |
| Fractional coloring | Vertices may have multiple colors, and on each edge the sum of the color parts of each vertex is not greater than one |
| Oriented coloring | Takes into account orientation of edges of the graph |
Some improper colorings:
| Cocoloring | Every color class induces an independent set or a clique |
| Subcoloring | Every color class induces a union of cliques |
| Weak coloring | Every non-isolated node has at least one neighbor with a different color |
Coloring can be considered for signed graphs and gain graphs. Similar questions arise.
Graph coloring is computationally hard. It is NP-complete to decide if a given graph admits a coloring which uses at most a given number of colors. The problem remains NP-complete even on planar graphs of degree at most 4 4.
Determining if a graph can be colored with 2 colors is equivalent to determining whether or not the graph is bipartite, and thus polynomial time-computable. As a consequence of the Strong Perfect Graph Theorem, the chromatic number of a perfect graph can be computed in polynomial time. Other classes of graphs that admit polynomial time algorithms are forests and chordal graphs.
Brute-force search for a k-coloring considers every of the
assignments of colors to vertices and checks for each if it is legal. To compute the chromatic number and the chromatic polynomial, this procedure is used for every k, for a total running time of O((n + 1)!), impractical for all but the smallest input graphs.
This can be improved based on Zykov’s identity: If e is not a loop, then the chromatic number satisfies the recurrence relation:

where u and v are nonadjecent vertices, G + uv is the graph with the edge uv added, and G / uv is the graph where the two vertices are contracted into a single vertex.
The expressions gives rise to a recursive procedure, called the deletion–contraction algorithm. The running time satisfies the same recurrence relation as the Fibonacci numbers, so in the worst case, the algorithm runs in time within a polynomial factor of
5. The analysis can be improved to within a polynomial factor of the number t(G) of spanning trees of the input graph 6. In practice, branch and bound strategies and graph isomorphism rejection are employed to avoid some recursive calls, the running time depends on the heuristic used to pick the vertex pair.
The Welsh-Powell algorithm7 for coloring a graph uses a simple heuristic improvement to a completely naive greedy algorithm. By processing the vertices in non-increasing order of degree, that is, ordering them so that
, where di is the degree of the ith node, this algorithm uses α(G) colors where

The algorithm is as follows:
This algorithm does not necessarily find a χ(G) coloring.
Here we can find the sequential algorithms (those that color one vertex at a time), heuristic algorithms, global randomized algorithms, metaheuristic algorithms (using simulated annealing, tabu search, etc.), and genetic algorithms, to name several types.
For k ≥ 3 the problem is NP-Complete. By the gap theorem, this implies that the problem can not be approximated by a polynomial algorithm within a factor of 4/3 unless P=NP.
Other algorithms are known, but all are exponential in the size of the graph. In general, computing the chromatic polynomial is #P-complete, so it is unlikely that a polynomial time algorithm for all graphs will be found.
The problem of coloring a graph has found a number of applications. Some of them are scheduling, register allocation in compilers, frequency assignment in mobile radios, and pattern matching.
The recreational puzzle Sudoku can be seen as completing a 9-coloring a given specific graph on 81 vertices.
| Wikimedia Commons has media related to: Graph coloring |