Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Graph coloring
Methodic assignment of colors to elements of a graph

In graph theory, graph coloring is the assignment of "colors" to elements of a graph under constraints like ensuring no two adjacent vertices share the same color, known as vertex coloring. Variants include edge coloring, which colors edges so adjacent edges differ, and face coloring of a planar graph, coloring each face distinctly. Vertex coloring often serves as a foundation since problems like edge coloring transform into vertex coloring of a line graph, or face coloring into vertex coloring of the dual. Originating from coloring countries on a political map, graph coloring uses finite sets as "colors" and remains a vibrant area of research with applications including puzzles like Sudoku. See also the Glossary of graph theory.

Related Image Collections Add Image
We don't have any YouTube videos related to Graph coloring yet.
We don't have any PDF documents related to Graph coloring yet.
We don't have any Books related to Graph coloring yet.
We don't have any archived web articles related to Graph coloring yet.

History

See also: History of the four color theorem and History of graph theory

The first results about graph coloring deal almost exclusively with planar graphs in the form of map coloring. 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. The same year, Alfred Kempe published a paper that claimed to establish the result, and for a decade the four color problem was considered solved. For his accomplishment Kempe was elected a Fellow of the Royal Society and later President of the London Mathematical Society.1

In 1890, Percy John Heawood pointed out that Kempe's argument was wrong. However, in that paper he proved the five color theorem, saying that every planar map can be colored with no more than five colors, using ideas of Kempe. In the following century, a vast amount of work was done and theories were developed to reduce the number of colors to four, until the four color theorem was finally proved in 1976 by Kenneth Appel and Wolfgang Haken. The proof went back to the ideas of Heawood and Kempe and largely disregarded the intervening developments.2 The proof of the four color theorem is noteworthy, aside from its solution of a century-old problem, for being the first major computer-aided proof.

In 1912, George David Birkhoff introduced the chromatic polynomial to study the coloring problem, which was generalised to the Tutte polynomial by W. T. Tutte, both of which are important invariants in algebraic graph theory. Kempe had already drawn attention to the general, non-planar case in 1879,3 and many results on generalisations of planar graph coloring to surfaces of higher order followed in the early 20th century.

In 1960, Claude Berge formulated another conjecture about graph coloring, the strong perfect graph conjecture, originally motivated by an information-theoretic concept called the zero-error capacity of a graph introduced by Shannon. The conjecture remained unresolved for 40 years, until it was established as the celebrated strong perfect graph theorem by Chudnovsky, Robertson, Seymour, and Thomas in 2002.

Graph coloring has been studied as an algorithmic problem since the early 1970s: the chromatic number problem (see section § Vertex coloring below) is one of Karp's 21 NP-complete problems from 1972, and at approximately the same time various exponential-time algorithms were developed based on backtracking and on the deletion-contraction recurrence of Zykov (1949). One of the major applications of graph coloring, register allocation in compilers, was introduced in 1981.

Definition and terminology

Vertex coloring

When used without any qualification, a coloring of a graph almost always refers to a proper vertex coloring, namely a labeling of the graph's vertices with colors such that no two vertices sharing the same edge have the same color. Since a vertex with a loop (i.e. a connection directly back to itself) could never be properly colored, it is understood that graphs in this context are loopless.

The terminology of using colors for vertex labels goes back to map coloring. Labels like red and blue are only used when the number of colors is small, and normally it is understood that the labels are drawn from the integers {1, 2, 3, ...}.

A coloring using at most k colors is called a (proper) k-coloring. The smallest number of colors needed to color a graph G is called its chromatic number, and is often denoted χ(G).4 Sometimes γ(G) is used, since χ(G) is also used to denote the Euler characteristic of a graph.5 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. A subset of vertices assigned to the same color is called a color class; every such class forms an independent set. Thus, a k-coloring is the same as a partition of the vertex set into k independent sets, and the terms k-partite and k-colorable have the same meaning.

Chromatic polynomial

Main article: Chromatic polynomial

The chromatic polynomial counts the number of ways a graph can be colored using some of a given number of colors. For example, using three colors, the graph in the adjacent image 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 colors1234...
Number of colorings001272...

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 more information about the colorability of G than does the chromatic number. Indeed, χ is the smallest positive integer that is not a zero of the chromatic polynomial χ(G) = min{k : P(G, k) > 0}.

Chromatic polynomials for certain graphs
Triangle K3t(t − 1)(t − 2)
Complete graph Knt(t − 1)(t − 2) ... (t − (n − 1))
Tree with n verticest(t − 1)n−1
Cycle Cn(t − 1)n + (−1)n(t − 1)
Petersen grapht(t − 1)(t − 2)(t7 − 12t6 + 67t5 − 230t4 + 529t3 − 814t2 + 775t − 352)

Edge coloring

Main article: Edge coloring

An edge coloring of a graph is a proper coloring of the edges, meaning an assignment of colors to edges so that no vertex is incident to two edges of the same color. An edge coloring with k colors is called a k-edge-coloring and is equivalent to the problem of partitioning the edge set into k matchings. The smallest number of colors needed for an edge coloring of a graph G is the chromatic index, or edge chromatic number, χ′(G). A Tait coloring is a 3-edge coloring of a cubic graph. The four color theorem is equivalent to the assertion that every planar cubic bridgeless graph admits a Tait coloring.

Total coloring

Main article: Total coloring

Total coloring is a type of coloring on the vertices and edges of a graph. When used without any qualification, a total coloring is always assumed to be proper in the sense that no adjacent vertices, no adjacent edges, and no edge and its end-vertices are assigned the same color. The total chromatic number χ″(G) of a graph G is the fewest colors needed in any total coloring of G.

Face coloring

For a graph with a strong embedding on a surface, the face coloring is the dual of the vertex coloring problem.

Tutte's flow theory

For a graph G with a strong embedding on an orientable surface, William T. Tutte678 discovered that if the graph is k-face-colorable then G admits a nowhere-zero k-flow. The equivalence holds if the surface is sphere.

Unlabeled coloring

An unlabeled coloring of a graph is an orbit of a coloring under the action of the automorphism group of the graph. The colors remain labeled; it is the graph that is unlabeled. There is an analogue of the chromatic polynomial which counts the number of unlabeled colorings of a graph from a given finite color set.

If we interpret a coloring of a graph on d vertices as a vector in ⁠ Z d {\displaystyle \mathbb {Z} ^{d}} ⁠, the action of an automorphism is a permutation of the coefficients in the coloring vector.

Properties

Upper bounds on the chromatic number

Assigning distinct colors to distinct vertices always yields a proper coloring, so

1 ≤ χ ( G ) ≤ n . {\displaystyle 1\leq \chi (G)\leq n.}

The only graphs that can be 1-colored are edgeless graphs. A complete graph K n {\displaystyle K_{n}} of n vertices requires χ ( K n ) = n {\displaystyle \chi (K_{n})=n} colors. In an optimal coloring there must be at least one of the graph's m edges between every pair of color classes, so

χ ( G ) ( χ ( G ) − 1 ) ≤ 2 m . {\displaystyle \chi (G)(\chi (G)-1)\leq 2m.}

More generally a family F {\displaystyle {\mathcal {F}}} of graphs is χ-bounded if there is some function c {\displaystyle c} such that the graphs G {\displaystyle G} in F {\displaystyle {\mathcal {F}}} can be colored with at most c ( ω ( G ) ) {\displaystyle c(\omega (G))} colors, where ω ( G ) {\displaystyle \omega (G)} is the clique number of G {\displaystyle G} . For the family of the perfect graphs this function is c ( ω ( G ) ) = ω ( G ) {\displaystyle c(\omega (G))=\omega (G)} .

The 2-colorable graphs are exactly the bipartite graphs, including trees and forests. By the four color theorem, every planar graph can be 4-colored.

A greedy coloring shows that every graph can be colored with one more color than the maximum vertex degree,

χ ( G ) ≤ Δ ( G ) + 1. {\displaystyle \chi (G)\leq \Delta (G)+1.}

Complete graphs have χ ( G ) = n {\displaystyle \chi (G)=n} and Δ ( G ) = n − 1 {\displaystyle \Delta (G)=n-1} , and odd cycles have χ ( G ) = 3 {\displaystyle \chi (G)=3} and Δ ( G ) = 2 {\displaystyle \Delta (G)=2} , so for these graphs this bound is best possible. In all other cases, the bound can be slightly improved; Brooks' theorem9 states that

Brooks' theorem: χ ( G ) ≤ Δ ( G ) {\displaystyle \chi (G)\leq \Delta (G)} for a connected, simple graph G, unless G is a complete graph or an odd cycle.

Lower bounds on the chromatic number

Several lower bounds for the chromatic bounds have been discovered over the years:

If G contains a clique of size k, then at least k colors are needed to color that clique; in other words, the chromatic number is at least the clique number:

χ ( G ) ≥ ω ( G ) . {\displaystyle \chi (G)\geq \omega (G).}

For perfect graphs this bound is tight. Finding cliques is known as the clique problem.

Hoffman's bound: Let W {\displaystyle W} be a real symmetric matrix such that W i , j = 0 {\displaystyle W_{i,j}=0} whenever ( i , j ) {\displaystyle (i,j)} is not an edge in G {\displaystyle G} . Define χ W ( G ) = 1 − λ max ( W ) λ min ( W ) {\displaystyle \chi _{W}(G)=1-{\tfrac {\lambda _{\max }(W)}{\lambda _{\min }(W)}}} , where λ max ( W ) , λ min ( W ) {\displaystyle \lambda _{\max }(W),\lambda _{\min }(W)} are the largest and smallest eigenvalues of W {\displaystyle W} . Define χ H ( G ) = max W χ W ( G ) {\textstyle \chi _{H}(G)=\max _{W}\chi _{W}(G)} , with W {\displaystyle W} as above. Then:

χ H ( G ) ≤ χ ( G ) . {\displaystyle \chi _{H}(G)\leq \chi (G).}

Vector chromatic number: Let W {\displaystyle W} be a positive semi-definite matrix such that W i , j ≤ − 1 k − 1 {\displaystyle W_{i,j}\leq -{\tfrac {1}{k-1}}} whenever ( i , j ) {\displaystyle (i,j)} is an edge in G {\displaystyle G} . Define χ V ( G ) {\displaystyle \chi _{V}(G)} to be the least k for which such a matrix W {\displaystyle W} exists. Then

χ V ( G ) ≤ χ ( G ) . {\displaystyle \chi _{V}(G)\leq \chi (G).}

Lovász number: The Lovász number of a complementary graph is also a lower bound on the chromatic number:

ϑ ( G ¯ ) ≤ χ ( G ) . {\displaystyle \vartheta ({\bar {G}})\leq \chi (G).}

Fractional chromatic number: The fractional chromatic number of a graph is a lower bound on the chromatic number as well:

χ f ( G ) ≤ χ ( G ) . {\displaystyle \chi _{f}(G)\leq \chi (G).}

These bounds are ordered as follows:

χ H ( G ) ≤ χ V ( G ) ≤ ϑ ( G ¯ ) ≤ χ f ( G ) ≤ χ ( G ) . {\displaystyle \chi _{H}(G)\leq \chi _{V}(G)\leq \vartheta ({\bar {G}})\leq \chi _{f}(G)\leq \chi (G).}

Graphs with high chromatic number

Graphs with large cliques have a high chromatic number, but the opposite is not true. The Grötzsch graph is an example of a 4-chromatic graph without a triangle, and the example can be generalized to the Mycielskians.

Theorem (William T. Tutte 1947,10 Alexander Zykov 1949, Jan Mycielski 1955): There exist triangle-free graphs with arbitrarily high chromatic number.

To prove this, both, Mycielski and Zykov, each gave a construction of an inductively defined family of triangle-free graphs but with arbitrarily large chromatic number.11 Burling (1965) constructed axis aligned boxes in R 3 {\displaystyle \mathbb {R} ^{3}} whose intersection graph is triangle-free and requires arbitrarily many colors to be properly colored. This family of graphs is then called the Burling graphs. The same class of graphs is used for the construction of a family of triangle-free line segments in the plane, given by Pawlik et al. (2014).12 It shows that the chromatic number of its intersection graph is arbitrarily large as well. Hence, this implies that axis aligned boxes in R 3 {\displaystyle \mathbb {R} ^{3}} as well as line segments in R 2 {\displaystyle \mathbb {R} ^{2}} are not χ-bounded.13

From Brooks's theorem, graphs with high chromatic number must have high maximum degree. But colorability is not an entirely local phenomenon: A graph with high girth looks locally like a tree, because all cycles are long, but its chromatic number need not be 2:

Theorem (Erdős): There exist graphs of arbitrarily high girth and chromatic number.14

Bounds on the chromatic index

An edge coloring of G is a vertex coloring of its line graph L ( G ) {\displaystyle L(G)} , and vice versa. Thus,

χ ′ ( G ) = χ ( L ( G ) ) . {\displaystyle \chi '(G)=\chi (L(G)).}

There is a strong relationship between edge colorability and the graph's maximum degree Δ ( G ) {\displaystyle \Delta (G)} . Since all edges incident to the same vertex need their own color, we have

χ ′ ( G ) ≥ Δ ( G ) . {\displaystyle \chi '(G)\geq \Delta (G).}

Moreover,

Kőnig's theorem: χ ′ ( G ) = Δ ( G ) {\displaystyle \chi '(G)=\Delta (G)} if G is bipartite.

In general, the relationship is even stronger than what Brooks's theorem gives for vertex coloring:

Vizing's Theorem: A graph of maximal degree Δ {\displaystyle \Delta } has edge-chromatic number Δ {\displaystyle \Delta } or Δ + 1 {\displaystyle \Delta +1} .

Other properties

A graph has a k-coloring if and only if it has an acyclic orientation for which the longest path has length at most k; this is the Gallai–Hasse–Roy–Vitaver theorem (Nešetřil & Ossona de Mendez 2012).

For planar graphs, vertex colorings are essentially dual to nowhere-zero flows.

About infinite graphs, much less is known. The following are two of the few results about infinite graph coloring:

  • If all finite subgraphs of an infinite graph G are k-colorable, then so is G, under the assumption of the axiom of choice. This is the de Bruijn–Erdős theorem of de Bruijn & Erdős (1951).
  • If a graph admits a full n-coloring for every nn0, it admits an infinite full coloring (Fawcett 1978).

Open problems

As stated above, ω ( G ) ≤ χ ( G ) ≤ Δ ( G ) + 1. {\displaystyle \omega (G)\leq \chi (G)\leq \Delta (G)+1.} A conjecture of Reed from 1998 is that the value is essentially closer to the lower bound, χ ( G ) ≤ ⌈ ω ( G ) + Δ ( G ) + 1 2 ⌉ . {\displaystyle \chi (G)\leq \left\lceil {\frac {\omega (G)+\Delta (G)+1}{2}}\right\rceil .}

The chromatic number of the plane, where two points are adjacent if they have unit distance, is unknown, although it is one of 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, the Erdős–Faber–Lovász conjecture bounding the chromatic number of unions of complete graphs that have at most one vertex in common to each pair, and the Albertson conjecture that among k-chromatic graphs the complete graphs are the ones with smallest crossing number.

When Birkhoff and Lewis introduced the chromatic polynomial in their attack on the four-color theorem, they conjectured that for planar graphs G, the polynomial P ( G , t ) {\displaystyle P(G,t)} has no zeros in the region [ 4 , ∞ ) {\displaystyle [4,\infty )} . Although it is known that such a chromatic polynomial has no zeros in the region [ 5 , ∞ ) {\displaystyle [5,\infty )} and that P ( G , 4 ) ≠ 0 {\displaystyle P(G,4)\neq 0} , their conjecture is still unresolved. It also remains an unsolved problem to characterize graphs which have the same chromatic polynomial and to determine which polynomials are chromatic.

Algorithms

Polynomial time

Determining if a graph can be colored with 2 colors is equivalent to determining whether or not the graph is bipartite, and thus computable in linear time using breadth-first search or depth-first search. More generally, the chromatic number and a corresponding coloring of perfect graphs can be computed in polynomial time using semidefinite programming. Closed formulas for chromatic polynomials are known for many classes of graphs, such as forests, chordal graphs, cycles, wheels, and ladders, so these can be evaluated in polynomial time.

If the graph is planar and has low branch-width (or is nonplanar but with a known branch-decomposition), then it can be solved in polynomial time using dynamic programming. In general, the time required is polynomial in the graph size, but exponential in the branch-width.

Exact algorithms

Brute-force search for a k-coloring considers each of the k n {\displaystyle k^{n}} assignments of k colors to n 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 = 1 , … , n − 1 {\displaystyle k=1,\ldots ,n-1} , impractical for all but the smallest input graphs.

Using dynamic programming and a bound on the number of maximal independent sets, k-colorability can be decided in time and space O ( 2.4423 n ) {\displaystyle O(2.4423^{n})} .15 Using the principle of inclusion–exclusion and Yates's algorithm for the fast zeta transform, k-colorability can be decided in time O ( 2 n n ) {\displaystyle O(2^{n}n)} 16171819 for any k. Faster algorithms are known for 3- and 4-colorability, which can be decided in time O ( 1.3289 n ) {\displaystyle O(1.3289^{n})} 20 and O ( 1.7272 n ) {\displaystyle O(1.7272^{n})} ,21 respectively. Exponentially faster algorithms are also known for 5- and 6-colorability, as well as for restricted families of graphs, including sparse graphs.22

Contraction

The contraction G / u v {\displaystyle G/uv} of a graph G is the graph obtained by identifying the vertices u and v, and removing any edges between them. The remaining edges originally incident to u or v are now incident to their identification (i.e., the new fused node uv). This operation plays a major role in the analysis of graph coloring.

The chromatic number satisfies the recurrence relation:

χ ( G ) = min { χ ( G + u v ) , χ ( G / u v ) } {\displaystyle \chi (G)={\text{min}}\{\chi (G+uv),\chi (G/uv)\}}

due to Zykov (1949), where u and v are non-adjacent vertices, and G + u v {\displaystyle G+uv} is the graph with the edge uv added. Several algorithms are based on evaluating this recurrence and the resulting computation tree is sometimes called a Zykov tree. The running time is based on a heuristic for choosing the vertices u and v.

The chromatic polynomial satisfies the following recurrence relation

P ( G − u v , k ) = P ( G / u v , k ) + P ( G , k ) , {\displaystyle P(G-uv,k)=P(G/uv,k)+P(G,k),}

where u and v are adjacent vertices, and G − u v {\displaystyle G-uv} is the graph with the edge uv removed. P ( G − u v , k ) {\displaystyle P(G-uv,k)} represents the number of possible proper colorings of the graph, where the vertices may have the same or different colors. Then the proper colorings arise from two different graphs. To explain, if the vertices u and v have different colors, then we might as well consider a graph where u and v are adjacent. If u and v have the same colors, we might as well consider a graph where u and v are contracted. Tutte's curiosity about which other graph properties satisfied this recurrence led him to discover a bivariate generalization of the chromatic polynomial, the Tutte polynomial.

These expressions give rise to a recursive procedure called the deletion–contraction algorithm, which forms the basis of many algorithms for graph coloring. 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 ( 1 + 5 2 ) n + m = O ( 1.6180 n + m ) {\displaystyle \left({\tfrac {1+{\sqrt {5}}}{2}}\right)^{n+m}=O(1.6180^{n+m})} for n vertices and m edges.23 The analysis can be improved to within a polynomial factor of the number t ( G ) {\displaystyle t(G)} of spanning trees of the input graph.24 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.

Greedy coloring

Main article: Greedy coloring

The greedy algorithm considers the vertices in a specific order v 1 {\displaystyle v_{1}} , ..., v n {\displaystyle v_{n}} and assigns to v i {\displaystyle v_{i}} the smallest available color not used by v i {\displaystyle v_{i}} 's neighbours among v 1 {\displaystyle v_{1}} , ..., v i − 1 {\displaystyle v_{i-1}} , adding a fresh color if needed. The quality of the resulting coloring depends on the chosen ordering. There exists an ordering that leads to a greedy coloring with the optimal number of χ ( G ) {\displaystyle \chi (G)} colors. On the other hand, greedy colorings can be arbitrarily bad; for example, the crown graph on n vertices can be 2-colored, but has an ordering that leads to a greedy coloring with n / 2 {\displaystyle n/2} colors.

For chordal graphs, and for special cases of chordal graphs such as interval graphs and indifference graphs, the greedy coloring algorithm can be used to find optimal colorings in polynomial time, by choosing the vertex ordering to be the reverse of a perfect elimination ordering for the graph. The perfectly orderable graphs generalize this property, but it is NP-hard to find a perfect ordering of these graphs.

If the vertices are ordered according to their degrees, the resulting greedy coloring uses at most max i  min { d ( x i ) + 1 , i } {\displaystyle {\text{max}}_{i}{\text{ min}}\{d(x_{i})+1,i\}} colors, at most one more than the graph's maximum degree. This heuristic is sometimes called the Welsh–Powell algorithm.25 Another heuristic due to Brélaz establishes the ordering dynamically while the algorithm proceeds, choosing next the vertex adjacent to the largest number of different colors.26 Many other graph coloring heuristics are similarly based on greedy coloring for a specific static or dynamic strategy of ordering the vertices, these algorithms are sometimes called sequential coloring algorithms.

The maximum (worst) number of colors that can be obtained by the greedy algorithm, by using a vertex ordering chosen to maximize this number, is called the Grundy number of a graph.

Heuristic algorithms

Two well-known polynomial-time heuristics for graph colouring are the DSatur and recursive largest first (RLF) algorithms.

Similarly to the greedy colouring algorithm, DSatur colours the vertices of a graph one after another, expending a previously unused colour when needed. Once a new vertex has been coloured, the algorithm determines which of the remaining uncoloured vertices has the highest number of different colours in its neighbourhood and colours this vertex next. This is defined as the degree of saturation of a given vertex.

The recursive largest first algorithm operates in a different fashion by constructing each color class one at a time. It does this by identifying a maximal independent set of vertices in the graph using specialised heuristic rules. It then assigns these vertices to the same color and removes them from the graph. These actions are repeated on the remaining subgraph until no vertices remain.

The worst-case complexity of DSatur is O ( n 2 ) {\displaystyle O(n^{2})} , where n {\displaystyle n} is the number of vertices in the graph. The algorithm can also be implemented using a binary heap to store saturation degrees, operating in O ( ( n + m ) log ⁡ n ) {\displaystyle O((n+m)\log n)} where m {\displaystyle m} is the number of edges in the graph.27 This produces much faster runs with sparse graphs. The overall complexity of RLF is slightly higher than DSatur at O ( m n ) {\displaystyle O(mn)} .28

DSatur and RLF are exact for bipartite, cycle, and wheel graphs.29

Parallel and distributed algorithms

It is known that a χ-chromatic graph can be c-colored in the deterministic LOCAL model, in O ( n 1 / α ) {\displaystyle O(n^{1/\alpha })} . rounds, with α = ⌊ c − 1 χ − 1 ⌋ {\displaystyle \alpha =\left\lfloor {\frac {c-1}{\chi -1}}\right\rfloor } . A matching lower bound of Ω ( n 1 / α ) {\displaystyle \Omega (n^{1/\alpha })} rounds is also known. This lower bound holds even if quantum computers that can exchange quantum information, possibly with a pre-shared entangled state, are allowed.

In the field of distributed algorithms, graph coloring is closely related to the problem of symmetry breaking. The current state-of-the-art randomized algorithms are faster for sufficiently large maximum degree Δ than deterministic algorithms. The fastest randomized algorithms employ the multi-trials technique by Schneider and Wattenhofer.30

In a symmetric graph, a deterministic distributed algorithm cannot find a proper vertex coloring. Some auxiliary information is needed in order to break symmetry. A standard assumption is that initially each node has a unique identifier, for example, from the set {1, 2, ..., n}. Put otherwise, we assume that we are given an n-coloring. The challenge is to reduce the number of colors from n to, e.g., Δ + 1. The more colors are employed, e.g. O(Δ) instead of Δ + 1, the fewer communication rounds are required.31

A straightforward distributed version of the greedy algorithm for (Δ + 1)-coloring requires Θ(n) communication rounds in the worst case – information may need to be propagated from one side of the network to another side.

The simplest interesting case is an n-cycle. Richard Cole and Uzi Vishkin32 show that there is a distributed algorithm that reduces the number of colors from n to O(log n) in one synchronous communication step. By iterating the same procedure, it is possible to obtain a 3-coloring of an n-cycle in O(log* n) communication steps (assuming that we have unique node identifiers).

The function log*, iterated logarithm, is an extremely slowly growing function, "almost constant". Hence the result by Cole and Vishkin raised the question of whether there is a constant-time distributed algorithm for 3-coloring an n-cycle. Linial (1992) showed that this is not possible: any deterministic distributed algorithm requires Ω(log* n) communication steps to reduce an n-coloring to a 3-coloring in an n-cycle.

The technique by Cole and Vishkin can be applied in arbitrary bounded-degree graphs as well; the running time is poly(Δ) + O(log* n).33 The technique was extended to unit disk graphs by Schneider and Wattenhofer.34 The fastest deterministic algorithms for (Δ + 1)-coloring for small Δ are due to Leonid Barenboim, Michael Elkin and Fabian Kuhn.35 The algorithm by Barenboim et al. runs in time O(Δ) + log*(n)/2, which is optimal in terms of n since the constant factor 1/2 cannot be improved due to Linial's lower bound. Panconesi & Srinivasan (1996) use network decompositions to compute a Δ+1 coloring in time 2 O ( log ⁡ n ) {\displaystyle 2^{O\left({\sqrt {\log n}}\right)}} .

The problem of edge coloring has also been studied in the distributed model. Panconesi & Rizzi (2001) achieve a (2Δ − 1)-coloring in O(Δ + log* n) time in this model. The lower bound for distributed vertex coloring due to Linial (1992) applies to the distributed edge coloring problem as well.

Decentralized algorithms

Decentralized algorithms are ones where no message passing is allowed (in contrast to distributed algorithms where local message passing takes places), and efficient decentralized algorithms exist that will color a graph if a proper coloring exists. These assume that a vertex is able to sense whether any of its neighbors are using the same color as the vertex i.e., whether a local conflict exists. This is a mild assumption in many applications e.g. in wireless channel allocation it is usually reasonable to assume that a station will be able to detect whether other interfering transmitters are using the same channel (e.g. by measuring the SINR). This sensing information is sufficient to allow algorithms based on learning automata to find a proper graph coloring with probability one.36

Computational complexity

Graph coloring is computationally hard. It is NP-complete to decide if a given graph admits a k-coloring for a given k except for the cases k ∈ {0,1,2}. In particular, it is NP-hard to compute the chromatic number.37 The 3-coloring problem remains NP-complete even on 4-regular planar graphs.38 On graphs with maximal degree 3 or less, however, Brooks' theorem implies that the 3-coloring problem can be solved in linear time. Further, for every k > 3, a k-coloring of a planar graph exists by the four color theorem, and it is possible to find such a coloring in polynomial time. However, finding the lexicographically smallest 4-coloring of a planar graph is NP-complete.39

The best known approximation algorithm computes a coloring of size at most within a factor O(n(log log n)2(log n)−3) of the chromatic number.40 For all ε > 0, approximating the chromatic number within n1−ε is NP-hard.41

It is also NP-hard to color a 3-colorable graph with 5 colors,42 4-colorable graph with 7 colours,43 and a k-colorable graph with ( k ⌊ k / 2 ⌋ ) − 1 {\displaystyle \textstyle {\binom {k}{\lfloor k/2\rfloor }}-1} colors for k ≥ 5.44

Computing the coefficients of the chromatic polynomial is ♯P-hard. In fact, even computing the value of χ ( G , k ) {\displaystyle \chi (G,k)} is ♯P-hard at any rational point k except for k = 1 and k = 2.45 There is no FPRAS for evaluating the chromatic polynomial at any rational point k ≥ 1.5 except for k = 2 unless NP = RP.46

For edge coloring, the proof of Vizing's result gives an algorithm that uses at most Δ+1 colors. However, deciding between the two candidate values for the edge chromatic number is NP-complete.47 In terms of approximation algorithms, Vizing's algorithm shows that the edge chromatic number can be approximated to within 4/3, and the hardness result shows that no (4/3 − ε)-algorithm exists for any ε > 0 unless P = NP. These are among the oldest results in the literature of approximation algorithms, even though neither paper makes explicit use of that notion.48

Applications

Scheduling

Vertex coloring models to a number of scheduling problems.49 In the cleanest form, a given set of jobs need to be assigned to time slots, each job requires one such slot. Jobs can be scheduled in any order, but pairs of jobs may be in conflict in the sense that they may not be assigned to the same time slot, for example because they both rely on a shared resource. The corresponding graph contains a vertex for every job and an edge for every conflicting pair of jobs. The chromatic number of the graph is exactly the minimum makespan, the optimal time to finish all jobs without conflicts.

Details of the scheduling problem define the structure of the graph. For example, when assigning aircraft to flights, the resulting conflict graph is an interval graph, so the coloring problem can be solved efficiently. In bandwidth allocation to radio stations, the resulting conflict graph is a unit disk graph, so the coloring problem is 3-approximable.

Register allocation

Main article: Register allocation

A compiler is a computer program that translates one computer language into another. To improve the execution time of the resulting code, one of the techniques of compiler optimization is register allocation, where the most frequently used values of the compiled program are kept in the fast processor registers. Ideally, values are assigned to registers so that they can all reside in the registers when they are used.

The textbook approach to this problem is to model it as a graph coloring problem.50 The compiler constructs an interference graph, where vertices are variables and an edge connects two vertices if they are needed at the same time. If the graph can be colored with k colors then any set of variables needed at the same time can be stored in at most k registers.

Other applications

The problem of coloring a graph arises in many practical areas such as sports scheduling,51 designing seating plans,52 exam timetabling,53 the scheduling of taxis,54 and solving Sudoku puzzles.55

Other colorings

Ramsey theory

Main article: Ramsey theory

An important class of improper coloring problems is studied in Ramsey theory, where the graph's edges are assigned to colors, and there is no restriction on the colors of incident edges. A simple example is the theorem on friends and strangers, which states that in any coloring of the edges of K 6 {\displaystyle K_{6}} , the complete graph of six vertices, there will be a monochromatic triangle; often illustrated by saying that any group of six people either has three mutual strangers or three mutual acquaintances. Ramsey theory is concerned with generalisations of this idea to seek regularity amid disorder, finding general conditions for the existence of monochromatic subgraphs with given structure.

Modular Coloring

Modular coloring is a type of graph coloring in which the color of each vertex is the sum of the colors of its adjacent vertices.

Let k ≥ 2 be a number of colors where Z k {\displaystyle \mathbb {Z} _{k}} is the set of integers modulo k consisting of the elements (or colors) 0,1,2, ..., k-2, k-1. First, we color each vertex in G using the elements of Z k {\displaystyle \mathbb {Z} _{k}} , allowing two adjacent vertices to be assigned the same color. In other words, we want c to be a coloring such that c: V(G) → Z k {\displaystyle \mathbb {Z} _{k}} where adjacent vertices can be assigned the same color.

For each vertex v in G, the color sum of v, σ(v), is the sum of all of the adjacent vertices to v mod k. The color sum of v is denoted by

σ(v) = ∑u ∈ N(v) c(u),

where u is an arbitrary vertex in the neighborhood of v, N(v). We then color each vertex with the new coloring determined by the sum of the adjacent vertices. The graph G has a modular k-coloring if, for every pair of adjacent vertices a,b, σ(a) ≠ σ(b). The modular chromatic number of G, mc(G), is the minimum value of k such that there exists a modular k-coloring of G.<

For example, let there be a vertex v adjacent to vertices with the assigned colors 0, 1, 1, and 3 mod 4 (k=4). The color sum would be σ(v) = 0 + 1 + 1+ 3 mod 4 = 5 mod 4 = 1. This would be the new color of vertex v. We would repeat this process for every vertex in G. If two adjacent vertices have equal color sums, G does not have a modulo 4 coloring. If none of the adjacent vertices have equal color sums, G has a modulo 4 coloring.

Other colorings

Adjacent-vertex-distinguishing-total coloringA total coloring with the additional restriction that any two adjacent vertices have different color setsAcyclic coloringEvery 2-chromatic subgraph is acyclicB-coloringa coloring of the vertices where each color class contains a vertex that has a neighbor in all other color classes.Bounded Coloringa coloring in which the number of vertices per color is boundedCircular coloringMotivated by task systems in which production proceeds in a cyclic wayCocoloringAn improper vertex coloring where every color class induces an independent set or a cliqueComplete coloringEvery pair of colors appears on at least one edgeDefective coloringAn improper vertex coloring where every color class induces a bounded degree subgraph.Distinguishing coloringAn improper vertex coloring that destroys all the symmetries of the graphEquitable coloringThe sizes of color classes differ by at most oneExact coloringEvery pair of colors appears on exactly one edgeFractional coloringVertices may have multiple colors, and on each edge the sum of the color parts of each vertex is not greater than oneHamiltonian coloringUses the length of the longest path between two vertices, also known as the detour distanceHarmonious coloringEvery pair of colors appears on at most one edgeIncidence coloringEach adjacent incidence of vertex and edge is colored with distinct colorsInherited vertex coloringA set of vertex colorings induced by perfect matchings of edge-colored Graphs.Interval edge coloringA color of edges meeting in a common vertex must be contiguousList coloringEach vertex chooses from a list of colorsList edge-coloringEach edge chooses from a list of colorsL(h, k)-coloringDifference of colors at adjacent vertices is at least h and difference of colors of vertices at a distance two is at least k. A particular case is L(2,1)-coloring.Oriented coloringTakes into account orientation of edges of the graphPath coloringModels a routing problem in graphsRadio coloringSum of the distance between the vertices and the difference of their colors is greater than k + 1, where k is a positive integer.Rank coloringIf two vertices have the same color i, then every path between them contain a vertex with color greater than iSubcoloringAn improper vertex coloring where every color class induces a union of cliquesSum coloringThe criterion of minimalization is the sum of colorsStar coloringEvery 2-chromatic subgraph is a disjoint collection of starsStrong coloringEvery color appears in every partition of equal size exactly onceStrong edge coloringEdges are colored such that each color class induces a matching (equivalent to coloring the square of the line graph)T-coloringAbsolute value of the difference between two colors of adjacent vertices must not belong to fixed set TTotal coloringVertices and edges are coloredCentered coloringEvery connected induced subgraph has a color that is used exactly onceTriangle-free edge coloringThe edges are colored so that each color class forms a triangle-free subgraphWeak coloringAn improper vertex coloring where every non-isolated node has at least one neighbor with a different color

Coloring can also be considered for signed graphs and gain graphs.

See also

Notes

Wikimedia Commons has media related to Graph coloring.

References

  1. M. Kubale, History of graph coloring, in Kubale (2004). - Kubale, M. (2004), Graph Colorings, American Mathematical Society, ISBN 0-8218-3458-4

  2. van Lint & Wilson (2001), Chap. 33. - van Lint, J. H.; Wilson, R. M. (2001), A Course in Combinatorics (2nd ed.), Cambridge University Press, ISBN 0-521-80340-3

  3. Jensen & Toft (1995), p. 2. - Jensen, T. R.; Toft, B. (1995), Graph Coloring Problems, Wiley-Interscience, New York, ISBN 0-471-02865-7

  4. Weisstein, Eric W. "Chromatic Number". mathworld.wolfram.com. Retrieved 2025-02-09. https://mathworld.wolfram.com/ChromaticNumber.html

  5. Weisstein, Eric W. "Euler Characteristic". mathworld.wolfram.com. Retrieved 2025-02-09. https://mathworld.wolfram.com/EulerCharacteristic.html

  6. Tutte (1949) - Tutte, W.T. (1949), "On the imbedding of linear graphs in surfaces", Proc. London Math. Soc., 2,51, pp. 474–483

  7. Tutte (1954) - Tutte, W.T. (1954), "A contribution on the theory of chromatic polynomial", Canad. J. Math., vol. 6, pp. 80–91

  8. Zhang (1997) - Zhang, Cun-Quan (1997), Integer Flows and Cycle Covers of Graphs, CRC Press, ISBN 978-0-8247-9790-4 https://archive.org/details/integerflowscycl0000zhan

  9. Brooks (1941). - Brooks, R. L. (1941), "On colouring the nodes of a network", Proceedings of the Cambridge Philosophical Society, 37 (2): 194–197, Bibcode:1941PCPS...37..194B, doi:10.1017/S030500410002168X, S2CID 209835194 https://ui.adsabs.harvard.edu/abs/1941PCPS...37..194B

  10. Descartes (1947). - Descartes, Blanche (April 1947), "A three colour problem", Eureka, 21

  11. Scott & Seymour (2020). - Scott, Alex; Seymour, Paul (2020), "A survey of χ-boundedness", Journal of Graph Theory, 95 (3): 2–3, doi:10.1002/jgt.22601, S2CID 4760027 https://doi.org/10.1002%2Fjgt.22601

  12. Pawlik et al. (2014). - Pawlik, A.; Kozik, J.; Krawczyk, T.; Lasoń, M.; Micek, P.; Trotter, W.; Walczak, B. (2014), "Triangle-free intersection graphs of line segments with large chromatic number", Journal of Combinatorial Theory, Series B, 105 (5): 6–10, arXiv:1209.1595, doi:10.1016/j.jctb.2013.11.001 https://arxiv.org/abs/1209.1595

  13. Pawlik et al. (2014). - Pawlik, A.; Kozik, J.; Krawczyk, T.; Lasoń, M.; Micek, P.; Trotter, W.; Walczak, B. (2014), "Triangle-free intersection graphs of line segments with large chromatic number", Journal of Combinatorial Theory, Series B, 105 (5): 6–10, arXiv:1209.1595, doi:10.1016/j.jctb.2013.11.001 https://arxiv.org/abs/1209.1595

  14. Erdős (1959). - Erdős, Paul (1959), "Graph theory and probability", Canadian Journal of Mathematics, 11: 34–38, doi:10.4153/CJM-1959-003-9, S2CID 122784453 https://doi.org/10.4153%2FCJM-1959-003-9

  15. Lawler (1976). - Lawler, E.L. (1976), "A note on the complexity of the chromatic number problem", Information Processing Letters, 5 (3): 66–67, doi:10.1016/0020-0190(76)90065-X https://inria.hal.science/hal-04716389

  16. Björklund, Husfeldt & Koivisto (2009), p. 550. - Björklund, A.; Husfeldt, T.; Koivisto, M. (2009), "Set partitioning via inclusion–exclusion", SIAM Journal on Computing, 39 (2): 546–563, doi:10.1137/070683933 https://doi.org/10.1137%2F070683933

  17. Yates (1937), p. 66-67. - Yates, F. (1937), The design and analysis of factorial experiments (Technical Communication), vol. 35, Harpenden, England: Commonwealth Bureau of Soils https://repository.rothamsted.ac.uk/item/98765/the-design-and-analysis-of-factorial-experiments

  18. Knuth (1997), Chapter 4.6.4, pp. 501-502. - Knuth, Donald Ervin (1997), Seminumerical Algorithms, The Art of Computer Programming, vol. 2 (3rd ed.), Reading/MA: Addison-Wesley, ISBN 0-201-89684-2

  19. Koivisto (2004), pp. 45, 96–103. - Koivisto, Mikko (Jan 2004), Sum-Product Algorithms for the Analysis of Genetic Risks (Ph.D. thesis), Dept. CS Ser. Pub. A, vol. A-2004-1, University of Helsinki, ISBN 952-10-1578-0 https://helda.helsinki.fi/handle/10138/21365

  20. Beigel & Eppstein (2005). - Beigel, R.; Eppstein, D. (2005), "3-coloring in time O(1.3289n)", Journal of Algorithms, 54 (2)): 168–204, arXiv:cs/0006046, doi:10.1016/j.jalgor.2004.06.008, S2CID 1209067 https://arxiv.org/abs/cs/0006046

  21. Fomin, Gaspers & Saurabh (2007). - Fomin, F.V.; Gaspers, S.; Saurabh, S. (2007), "Improved exact algorithms for counting 3- and 4-colorings", Proc. 13th Annual International Conference, COCOON 2007, Lecture Notes in Computer Science, vol. 4598, Springer, pp. 65–74, doi:10.1007/978-3-540-73545-8_9, ISBN 978-3-540-73544-1 https://doi.org/10.1007%2F978-3-540-73545-8_9

  22. Zamir (2021). - Zamir, Or (2021), "Breaking the 2n Barrier for 5-Coloring and 6-Coloring", in Bansal, Nikhil; Merelli, Emanuela; Worrell, James (eds.), 48th International Colloquium on Automata, Languages, and Programming (ICALP), Leibniz International Proceedings in Informatics (LIPIcs), vol. 198, Schloss Dagstuhl – Leibniz-Zentrum für Informatik, pp. 113:1–113:20, doi:10.4230/LIPIcs.ICALP.2021.113, ISBN 978-3-95977-195-5 https://doi.org/10.4230%2FLIPIcs.ICALP.2021.113

  23. Wilf (1986). - Wilf, H. S. (1986), Algorithms and Complexity, Prentice–Hall

  24. Sekine, Imai & Tani (1995). - Sekine, Kyoko; Imai, Hiroshi; Tani, Seiichiro (1995), "Computing the Tutte polynomial of a graph of moderate size", Proc. 6th International Symposium on Algorithms and Computation (ISAAC 1995), Lecture Notes in Computer Science, vol. 1004, Springer, pp. 224–233, doi:10.1007/BFb0015427, ISBN 3-540-60573-8 https://doi.org/10.1007%2FBFb0015427

  25. Welsh & Powell (1967). - Welsh, D. J. A.; Powell, M. B. (1967), "An upper bound for the chromatic number of a graph and its application to timetabling problems", The Computer Journal, 10 (1): 85–86, doi:10.1093/comjnl/10.1.85 https://doi.org/10.1093%2Fcomjnl%2F10.1.85

  26. Brélaz (1979). - Brélaz, D. (1979), "New methods to color the vertices of a graph", Communications of the ACM, 22 (4): 251–256, doi:10.1145/359094.359101, S2CID 14838769 https://doi.org/10.1145%2F359094.359101

  27. Lewis (2021). - Lewis, R. M. R. (2021), Guide to Graph Colouring, Texts in Computer Science, Cham: Springer, doi:10.1007/978-3-030-81054-2, ISBN 978-3-030-81053-5, S2CID 57188465 https://link.springer.com/book/10.1007/978-3-030-81054-2

  28. Lewis (2021). - Lewis, R. M. R. (2021), Guide to Graph Colouring, Texts in Computer Science, Cham: Springer, doi:10.1007/978-3-030-81054-2, ISBN 978-3-030-81053-5, S2CID 57188465 https://link.springer.com/book/10.1007/978-3-030-81054-2

  29. Lewis (2021). - Lewis, R. M. R. (2021), Guide to Graph Colouring, Texts in Computer Science, Cham: Springer, doi:10.1007/978-3-030-81054-2, ISBN 978-3-030-81053-5, S2CID 57188465 https://link.springer.com/book/10.1007/978-3-030-81054-2

  30. Schneider & Wattenhofer (2010). - Schneider, Johannes; Wattenhofer, Roger (2010), "A new technique for distributed symmetry breaking", in Richa, Andréa W.; Guerraoui, Rachid (eds.), Proceedings of the 29th Annual ACM Symposium on Principles of Distributed Computing, PODC 2010, Zurich, Switzerland, July 25–28, 2010, Association for Computing Machinery, pp. 257–266, doi:10.1145/1835698.1835760, ISBN 978-1-60558-888-9 https://doi.org/10.1145%2F1835698.1835760

  31. Schneider & Wattenhofer (2010). - Schneider, Johannes; Wattenhofer, Roger (2010), "A new technique for distributed symmetry breaking", in Richa, Andréa W.; Guerraoui, Rachid (eds.), Proceedings of the 29th Annual ACM Symposium on Principles of Distributed Computing, PODC 2010, Zurich, Switzerland, July 25–28, 2010, Association for Computing Machinery, pp. 257–266, doi:10.1145/1835698.1835760, ISBN 978-1-60558-888-9 https://doi.org/10.1145%2F1835698.1835760

  32. Cole & Vishkin (1986), see also Cormen, Leiserson & Rivest (1990, Section 30.5). - Cole, R.; Vishkin, U. (1986), "Deterministic coin tossing with applications to optimal parallel list ranking", Information and Control, 70 (1): 32–53, doi:10.1016/S0019-9958(86)80023-7 https://doi.org/10.1016%2FS0019-9958%2886%2980023-7

  33. Goldberg, Plotkin & Shannon (1988). - Goldberg, A. V.; Plotkin, S. A.; Shannon, G. E. (1988), "Parallel symmetry-breaking in sparse graphs", SIAM Journal on Discrete Mathematics, 1 (4): 434–446, doi:10.1137/0401044 https://docs.lib.purdue.edu/cgi/viewcontent.cgi?article=1613&context=cstech

  34. Schneider & Wattenhofer (2008). - Schneider, Johannes; Wattenhofer, Roger (2008), "A log-star distributed maximal independent set algorithm for growth-bounded graphs", in Bazzi, Rida A.; Patt-Shamir, Boaz (eds.), Proceedings of the Twenty-Seventh Annual ACM Symposium on Principles of Distributed Computing, PODC 2008, Toronto, Canada, August 18–21, 2008, Association for Computing Machinery, pp. 35–44, doi:10.1145/1400751.1400758, ISBN 978-1-59593-989-0 https://doi.org/10.1145%2F1400751.1400758

  35. Barenboim & Elkin (2009); Kuhn (2009). - Barenboim, L.; Elkin, M. (2009), "Distributed (Δ + 1)-coloring in linear (in Δ) time", Proceedings of the 41st Symposium on Theory of Computing, pp. 111–120, arXiv:0812.1379, doi:10.1145/1536414.1536432, ISBN 978-1-60558-506-2, S2CID 13446345 https://arxiv.org/abs/0812.1379

  36. E.g. see Leith & Clifford (2006) and Duffy, O'Connell & Sapozhnikov (2008). - Leith, D.J.; Clifford, P. (2006), "A self-managed distributed channel selection algorithm for WLAN" (PDF), Proc. RAWNET 2006, Boston, MA, retrieved 2016-03-03 http://www.hamilton.ie/peterc/downloads/rawnet06.pdf

  37. Garey, Johnson & Stockmeyer (1974); Garey & Johnson (1979). - Garey, M. R.; Johnson, D. S.; Stockmeyer, L. (1974), "Some simplified NP-complete problems", Proceedings of the Sixth Annual ACM Symposium on Theory of Computing, pp. 47–63, doi:10.1145/800119.803884, ISBN 9781450374231, S2CID 207693360 http://portal.acm.org/citation.cfm?id=803884

  38. Dailey (1980). - Dailey, D. P. (1980), "Uniqueness of colorability and colorability of planar 4-regular graphs are NP-complete", Discrete Mathematics, 30 (3): 289–293, doi:10.1016/0012-365X(80)90236-8 https://doi.org/10.1016%2F0012-365X%2880%2990236-8

  39. Khuller & Vazirani (1991). - Khuller, Samir; Vazirani, Vijay V. (1991-09-30), "Planar graph coloring is not self-reducible, assuming P ≠ NP", Theoretical Computer Science, 88 (1): 183–189, doi:10.1016/0304-3975(91)90081-C, ISSN 0304-3975 https://dx.doi.org/10.1016/0304-3975%2891%2990081-C

  40. Halldórsson (1993). - Halldórsson, M. M. (1993), "A still better performance guarantee for approximate graph coloring", Information Processing Letters, 45 (1): 19–23, doi:10.1016/0020-0190(93)90246-6 https://doi.org/10.1016%2F0020-0190%2893%2990246-6

  41. Zuckerman (2007). - Zuckerman, D. (2007), "Linear degree extractors and the inapproximability of Max Clique and Chromatic Number", Theory of Computing, 3 (1): 103–128, doi:10.4086/toc.2007.v003a006 https://doi.org/10.4086%2Ftoc.2007.v003a006

  42. Bulín, Krokhin & Opršal (2019). - Bulín, J.; Krokhin, A.; Opršal, J. (2019), "Algebraic approach to promise constraint satisfaction", Proceedings of the 51st Annual ACM SIGACT Symposium on the Theory of Computing, pp. 602–613, arXiv:1811.00970, doi:10.1145/3313276.3316300, ISBN 978-1-4503-6705-9 https://arxiv.org/abs/1811.00970

  43. Bulín, Krokhin & Opršal (2019). - Bulín, J.; Krokhin, A.; Opršal, J. (2019), "Algebraic approach to promise constraint satisfaction", Proceedings of the 51st Annual ACM SIGACT Symposium on the Theory of Computing, pp. 602–613, arXiv:1811.00970, doi:10.1145/3313276.3316300, ISBN 978-1-4503-6705-9 https://arxiv.org/abs/1811.00970

  44. Wrochna & Živný (2020). - Wrochna, M.; Živný, S. (2020), "Improved hardness for H-colourings of G-colourable graphs", Proceedings of the Thirty-First Annual ACM-SIAM Symposium on Discrete Algorithms, pp. 1426–1435 https://dl.acm.org/doi/10.5555/3381089.3381175

  45. Jaeger, Vertigan & Welsh (1990). - Jaeger, F.; Vertigan, D. L.; Welsh, D. J. A. (1990), "On the computational complexity of the Jones and Tutte polynomials", Mathematical Proceedings of the Cambridge Philosophical Society, 108 (1): 35–53, Bibcode:1990MPCPS.108...35J, doi:10.1017/S0305004100068936, S2CID 121454726 https://ui.adsabs.harvard.edu/abs/1990MPCPS.108...35J

  46. Goldberg & Jerrum (2008). - Goldberg, L. A.; Jerrum, M. (July 2008), "Inapproximability of the Tutte polynomial", Information and Computation, 206 (7): 908–929, arXiv:cs/0605140, doi:10.1016/j.ic.2008.04.003, S2CID 53304001 https://arxiv.org/abs/cs/0605140

  47. Holyer (1981). - Holyer, I. (1981), "The NP-completeness of edge-coloring", SIAM Journal on Computing, 10 (4): 718–720, doi:10.1137/0210055, S2CID 13131049 https://doi.org/10.1137%2F0210055

  48. Crescenzi & Kann (1998). - Crescenzi, P.; Kann, V. (December 1998), "How to find the best approximation results – a follow-up to Garey and Johnson", ACM SIGACT News, 29 (4): 90, doi:10.1145/306198.306210, S2CID 15748200 https://doi.org/10.1145%2F306198.306210

  49. Marx (2004). - Marx, Dániel (2004), "Graph colouring problems and their applications in scheduling", Periodica Polytechnica, Electrical Engineering, vol. 48, pp. 11–16, CiteSeerX 10.1.1.95.4268 https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.95.4268

  50. Chaitin (1982). - Chaitin, G. J. (1982), "Register allocation & spilling via graph colouring", Proc. 1982 SIGPLAN Symposium on Compiler Construction, pp. 98–105, doi:10.1145/800230.806984, ISBN 0-89791-074-5, S2CID 16872867 https://doi.org/10.1145%2F800230.806984

  51. Lewis (2021), pp. 221–246, Chapter 8: Designing sports leagues. - Lewis, R. M. R. (2021), Guide to Graph Colouring, Texts in Computer Science, Cham: Springer, doi:10.1007/978-3-030-81054-2, ISBN 978-3-030-81053-5, S2CID 57188465 https://link.springer.com/book/10.1007/978-3-030-81054-2

  52. Lewis (2021), pp. 203–220, Chapter 7: Designing seating plans. - Lewis, R. M. R. (2021), Guide to Graph Colouring, Texts in Computer Science, Cham: Springer, doi:10.1007/978-3-030-81054-2, ISBN 978-3-030-81053-5, S2CID 57188465 https://link.springer.com/book/10.1007/978-3-030-81054-2

  53. Lewis (2021), pp. 247–276, Chapter 9: Designing university timetables. - Lewis, R. M. R. (2021), Guide to Graph Colouring, Texts in Computer Science, Cham: Springer, doi:10.1007/978-3-030-81054-2, ISBN 978-3-030-81053-5, S2CID 57188465 https://link.springer.com/book/10.1007/978-3-030-81054-2

  54. Lewis (2021), pp. 5–6, Section 1.1.3: Scheduling taxis. - Lewis, R. M. R. (2021), Guide to Graph Colouring, Texts in Computer Science, Cham: Springer, doi:10.1007/978-3-030-81054-2, ISBN 978-3-030-81053-5, S2CID 57188465 https://link.springer.com/book/10.1007/978-3-030-81054-2

  55. Lewis (2021), pp. 172–179, Section 6.4: Latin squares and sudoku puzzles. - Lewis, R. M. R. (2021), Guide to Graph Colouring, Texts in Computer Science, Cham: Springer, doi:10.1007/978-3-030-81054-2, ISBN 978-3-030-81053-5, S2CID 57188465 https://link.springer.com/book/10.1007/978-3-030-81054-2