The five color theorem is a result from graph theory that given a plane separated into regions, such as a political map of the counties of a state, the regions may be colored using no more than five colors in such a way that no two adjacent regions receive the same color. In Mathematics and Computer science, graph theory is the study of graphs: mathematical structures used to model pairwise relations between objects
The five color theorem is implied by the stronger four color theorem, but can be proven with considerably less effort. The four color theorem (also known as the four color map theorem) states that given any plane separated into regions such as a political map of the states of a country It was based on a failed attempt at the four color proof by Alfred Kempe in 1879. Sir Alfred Bray Kempe DCL FRS (6 July 1849 Kensington, London – 21 April 1922 London) was a Mathematician Percy John Heawood found a fatal error 11 years later, and proved the five color theorem based on Kempe's work. Percy John Heawood ( 8 September, 1861 Newport Shropshire, England - 24 January, 1955 Durham, England The four color theorem was finally proven by Kenneth Appel and Wolfgang Haken at the University of Illinois, with the aid of a computer. Kenneth Appel (born 1932 is a mathematician who in 1976 with colleague Wolfgang Haken at the University of Illinois at Urbana-Champaign, solved one of the most famous This article is about the flagship campus For other uses and locations of University of Illinois, see University of Illinois (disambiguation The University of A computer-assisted proof is a Mathematical proof that has been at least partially generated by computer They were assisted in some algorithmic work by John Koch. John Koch (1909-1978 is an American painter One of his works is The Sculptor (1964 an oil on canvas painting
Contents |
First of all, one associates a planar graph G to the given map, namely one puts a vertex in each region of the map, then connects two vertices with an edge if and only if the corresponding regions share a common border. In Mathematics and Computer science, a graph is the basic object of study in Graph theory. The problem is then translated into a graph coloring problem: one has to paint the vertices of the graph so that no edge has endpoints of the same color.
The proof relies on the Euler characteristic to show that there must be a vertex V shared by at most five edges, and on the fact that G is planar, i. In Mathematics, and more specifically in Algebraic topology and Polyhedral combinatorics, the Euler characteristic is a Topological invariant Kuratowski's and Wagner's theorems The Polish mathematician Kazimierz Kuratowski provided a characterization of planar graphs in terms of Forbidden e. it may be embedded in the plane without intersecting edges.
Now remove V from G. The graph V' obtained this way has fewer vertices than G, so we can assume by induction that it can be colored with only five colors. Mathematical induction is a method of Mathematical proof typically used to establish that a given statement is true of all Natural numbers It is done by proving that V must be connected to five other vertices, since if not it can be colored in G with a color not used by them. So now look at those five vertices V1, V2, V3, V4, V5 that were adjacent to V in cyclic order (which depends on how we write G). If we did not use all the five colors on them, then obviously we can paint V in a consistent way to render our graph 5-colored.
So we can assume that V1, V2, V3, V4, V5 are colored with colors 1, 2, 3, 4, 5 respectively.
Now consider the subgraph G13 of V' consisting of the vertices that are colored with colors 1 and 3 only, and edges connecting two of them. If V1 and V3 lie in different connected components of G13, we can reverse the coloration on that containing V1, thus assigning color number 1 to V and completing the task.
If on the contrary V1 and V3 lie in the same connected component of G13, we can find a path in G13 joining them, that is a sequence of edges and vertices painted only with colors 1 and 3.
Now turn to the subgraph G24 of V' consisting of the vertices that are colored with colors 2 and 4 only, and edges connecting two of them, and apply the same arguments as before. Then either we are able to reverse a coloration on a subgraph of G24 and paint V with, say, color number 2, or we can connect V2 and V4 with a path containing vertices colored only with colors 2 and 4. The latter possibility is clearly absurd, as such a path would intersect the path we constructed in G13.
So G can in fact be five-colored, contrary to the initial presumption.
In 1996, Robertson, Sanders, Seymour, and Thomas described a quadratic four-coloring algorithm in their "Efficiently four-coloring planar graphs". [1] In the same paper they briefly describe a linear-time five-coloring algorithm, which is asymptotically optimal. In Computer science, an Algorithm is said to be asymptotically optimal if roughly speaking for large inputs it performs at worst a constant factor (independent of The algorithm as described here operates on multigraphs and relies on the ability to have multiple copies of edges between a single pair of vertices. It is based on Wernicke's theorem, which states the following:
We will use a representation of the graph in which each vertex maintains a circular linked list of adjacent vertices, in clockwise planar order.
In concept, the algorithm is recursive, reducing the graph to a smaller graph with one less vertex, five-coloring that graph, and then using that coloring to determine a coloring for the larger graph in constant time. In practice, rather than maintain an explicit graph representation for each reduced graph, we will remove vertices from the graph as we go, adding them to a stack, then color them as we pop them back off the stack at the end. We will maintain three stacks:
The algorithm works as follows:
After doing this, we push v3 onto Sd, along with a note that v1 is the vertex that it was merged with. Any vertices affected by the merge are added or removed from the stacks as appropriate.