Traversals: Eulerian and Hamiltonian Graphs

At times, we need a way to encounter every node in a graph. This page discusses how to do just that by using two important kinds of graphs.

9.4 Traversals: Eulerian and Hamiltonian Graphs

The subject of graph traversals has a long history. In fact, the solution by Leonhard Euler (Switzerland, 1707-83) of the Koenigsberg Bridge Problem is considered by many to represent the birth of graph theory.


9.4.1 Eulerian Graphs

Figure 9.4.1 A map of Koenigsberg, circa 1753


Figure 9.4.2 A multigraph for the bridges of Koenigsberg

A map of the Prussian city of Koenigsberg (circa 1735) in Figure 1 shows that there were seven bridges connecting the four land masses that made up the city. The legend of this problem states that the citizens of Koenigsberg searched in vain for a walking tour that passed over each bridge exactly once. No one could design such a tour and the search was abruptly abandoned with the publication of Euler's Theorem.


Theorem 9.4.3 Euler's Theorem: Koenigsberg Case. No walking tour of Koenigsberg can be designed so that each bridge is used exactly once.

Proof. The map of Koenigsberg can be represented as an undirected multigraph, as in Figure 9.4.2. The four land masses are the vertices and each edge represents a bridge.

The desired tour is then a path that uses each edge once and only once. Since the path can start and end at two different vertices, there are two remaining vertices that must be intermediate vertices in the path. If x is an intermediate vertex, then every time that you visit x, you must use two of its incident edges, one to enter and one to exit. Therefore, there must be an even number of edges connecting x to the other vertices. Since every vertex in the Koenigsberg graph has an odd number of edges, no tour of the type that is desired is possible.

As is typical of most mathematicians, Euler wasn't satisfied with solving only the Koenigsberg problem. His original theorem, which is paraphrased below, concerned the existence of paths and circuits like those sought in Koenigsberg. These paths and circuits have become associated with Euler's name.


Definition 9.4.4 Eulerian Paths, Circuits, Graphs. An Eulerian path through a graph is a path whose edge list contains each edge of the graph exactly once. If the path is a circuit, then it is called an Eulerian circuit. An Eulerian graph is a graph that possesses an Eulerian circuit.


Example 9.4.5 An Eulerian Graph. Without tracing any paths, we can be sure that the graph below has an Eulerian circuit because all vertices have an even degree. This follows from the following theorem.

Figure 9.4.6 An Eulerian graph


Theorem 9.4.7 Euler's Theorem: General Case. An undirected graph has an Eulerian path if and only if it is connected and has either zero or two vertices with an odd degree. If no vertex has an odd degree, then the graph is Eulerian.

Proof. It can be proven by induction that the number of vertices in an undirected graph that have an odd degree must be even. We will leave the proof of this fact to the reader as an exercise. The necessity of having either zero or two vertices of odd degree is clear from the proof of the Koenigsberg case of this theorem. Therefore, we will concentrate on proving that this condition is sufficient to ensure that a graph has an Eulerian path. Let k be the number of vertices with odd degree.

Phase 1. If k = 0, start at any vertex, v0, and travel along any path, not using any edge twice. Since each vertex has an even degree, this path can always be continued past each vertex that you reach except v0. The result is a circuit that includes v0. If k = 2, let v0 be either one of the vertices of odd degree. Trace any path starting at <i< i="">0 using up edges until you can go no further, as in the k = 0 case. This time, the path that you obtain must end at the other vertex of odd degree that we will call v1. At the end of Phase 1, we have an initial path that may or may not be Eulerian. If it is not Eulerian, Phase 2 can be repeated until all of the edges have been used. Since the number of unused edges is decreased in any use of Phase 2, an Eulerian path must be obtained in a finite number of steps.

Phase 2. As we enter this phase, we have constructed a path that uses a proper subset of the edges in our graph. We will refer to this path as the current path. Let V be the vertices of our graph, E the edges, and Euthe edges that have been used in the current path. Consider the graph G= (V, E Eu). Note that every vertex in Ghas an even degree. Select any edge, e, from G. Let vand vbe the vertices that e connects. Trace a new path starting at vawhose first edge is e. We can be sure that at least one vertex of the new path is also in the current path since (V, E) is connected. Starting at va, there exists a path in (V, E) to any vertex in the current path. At some point along this path, which we can consider the start of the new path, we will have intersected the current path. Since the degree of each vertex in Gis even, any path that we start at vcan be continued until it is a circuit. Now, we simply augment the current path with this circuit. As we travel along the current path, the first time that we intersect the new path, we travel along it (see Figure 9.4.8). Once we complete the circuit that is the new path, we resume the traversal of the current path.

Figure 9.4.8 Path Augmentation Plan

If the result of this phase is an Eulerian path, then we are finished; otherwise, repeat this phase.


Example 9.4.9 Complete Eulerian Graphs. The complete undirected graphs K2+ 1, n = 1, 2, 3, . . .. .., are Eulerian. If n ≥ 1, then K2n is not Eulerian.


9.4.2 Hamiltonian Graphs

To search for a path that uses every vertex of a graph exactly once seems to be a natural next problem after you have considered Eulerian graphs. The Irish mathematician Sir William Rowan Hamilton (1805-65) is given credit for first defining such paths. He is also credited with discovering the quaternions, for which he was honored by the Irish government with a postage stamp in 2005.

 

Figure 9.4.10 Irish stamp honoring Sir William Rowan Hamilton


Definition 9.4.11 Hamiltonian Path, Circuit, and Graphs. A Hamiltonian path through a graph is a path whose vertex list contains each vertex of the graph exactly once, except if the path is a circuit, in which case the initial vertex appears a second time as the terminal vertex. If the path is a circuit, then it is called a Hamiltonian circuit. A Hamiltonian graph is a graph that possesses a Hamiltonian circuit.


Example 9.4.12 The Original Hamiltonian Graph. Figure 9.4.14 shows a graph that is Hamiltonian. In fact, it is the graph that Hamilton used as an example to pose the question of existence of Hamiltonian paths in 1859. In its original form, the puzzle that was posed to readers was called "Around the World". The vertices were labeled with names of major cities of the world and the object was to complete a tour of these cities. The graph is also referred to as the dodecahedron graph, where vertices correspond with the corners of a dodecahedron and the edges are the edges of the solid that connect the corners.

 

Figure 9.4.13 A Dodecahedron


Figure 9.4.14 The Dodecahedron Graph


Problem 9.4.15 Unfortunately, a simple condition doesn't exist that characterizes a Hamiltonian graph. An obvious necessary condition is that the graph be connected; however, there is a connected undirected graph with four vertices that is not Hamiltonian. Can you draw such a graph?


Note 9.4.16 What Is Possible and What Is Impossible? The search for a Hamiltonian path in a graph is typical of many simple-sounding problems in graph theory that have proven to be very difficult to solve. Although there are simple algorithms for conducting the search, they are impractical for large problems because they take such a long time to complete as graph size increases. Currently, every algorithm to search for a Hamiltonian path in a graph takes a time that grows at a rate that is greater than any polynomial as a function of the number of vertices. Rates of this type are called "super-polynomial". That is, if T(n) is the time it takes to search a graph of n vertices, and p(n) is any polynomial, then T(n) > p(n) for all but possibly a finite number of positive values for n.

It is an unproven but widely held belief that no faster algorithm exists to search for Hamiltonian paths in general graphs. To sum up, the problem of determining whether a graph is Hamiltonian is theoretically possible; however, for large graphs we consider it a practical impossibility. Many of the problems we will discuss in the next section, particularly the Traveling Salesman Problem, are thought to be impossible in the same sense.


Definition 9.4.17 The n-cube. Let n ≥ 1, and let Bbe the set of strings of 0's and 1's with length n. The n-cube is the undirected graph with a vertex for each string in Band an edge connecting each pair of strings that differ in exactly one position. The n-cube is normally denoted Qn.

The n-cube is among the graphs that are defined within the graphs package of SageMath and is created with the expression graphs.CubeGraph(n).

graphs.CubeGraph(4).show(layout="spring")


Example 9.4.18 Analog-to-digital Conversion and the Gray Code. A common problem encountered in engineering is that of analog-to-digital (a-d) conversion, where the reading on a dial, for example, must be converted to a numerical value. In order for this conversion to be done reliably and quickly, one must solve an interesting problem in graph theory. Before this problem is posed, we will make the connection between a-d conversion and the graph problem using a simple example. Suppose a dial can be turned in any direction, and that the positions will be converted to one of the numbers zero through seven as depicted in Figure 9.4.19. The angles from 0 to 360 are divided into eight equal parts, and each part is assigned a number starting with 0 and increasing clockwise. If the dial points in any of these sectors the conversion is to the number of that sector. If the dial is on the boundary, then we will be satisfied with the conversion to either of the numbers in the bordering sectors. This conversion can be thought of as giving an approximate angle of the dial, for if the dial is in sector k, then the angle that the dial makes with east is approximately 45k°.

 

Figure 9.4.19 Analog-Digital Dial

Now that the desired conversion has been identified, we will describe a "solution" that has one major error in it, and then identify how this problem can be rectified. All digital computers represent numbers in binary form, as a sequence of 0's and 1's called bits, short for binary digits. The binary representations of numbers 0 through 7 are:

0 = 000two= 0 · 4 + 0 · 2 + 0 · 1

1 = 001two= 0 · 4 + 0 · 2 + 1 · 1

2 = 010two= 0 · 4 + 1 · 2 + 0 · 1

3 = 011two= 0 · 4 + 1 · 2 + 1 · 1

4 = 100two= 1 · 4 + 0 · 2 + 0 · 1

5 = 101two= 1 · 4 + 0 · 2 + 1 · 1

6 = 110two= 1 · 4 + 1 · 2 + 0 · 1

7 = 111two= 1 · 4 + 1 · 2 + 1 · 1

The way that we could send those bits to a computer is by coating parts of the back of the dial with a metallic substance, as in Figure 9.4.20. For each of the three concentric circles on the dial there is a small magnet. If a magnet lies under a part of the dial that has been coated with metal, then it will turn a switch ON, whereas the switch stays OFF when no metal is detected above a magnet. Notice how every ON/OFF combination of the three switches is possible given the way the back of the dial is coated.

If the dial is placed so that the magnets are in the middle of a sector, we expect this method to work well. There is a problem on certain boundaries, however. If the dial is turned so that the magnets are between sectors three and four, for example, then it is unclear what the result will be. This is due to the fact that each magnet will have only a fraction of the required metal above it to turn its switch ON. Due to expected irregularities in the coating of the dial, we can be safe in saying that for each switch either ON or OFF could be the result, and so if the dial is between sectors three and four, any number could be indicated. This problem does not occur between every sector. For example, between sectors 0 and 1, there is only one switch that cannot be predicted. No matter what the outcome is for the units switch in this case, the indicated sector must be either 0 or 1. This consistent with the original objective that a positioning of the dial on a boundary of two sectors should produce the number of either sector.


Figure 9.4.20 Coating scheme for the Analog-Digital Dial

Is there a way to coat the sectors on the back of the dial so that each of the eight patterns corresponding to the numbers 0 to 7 appears once, and so that between any two adjacent sectors there is only one switch that will have a questionable setting? What we are describing here is a Hamiltonian circuit of the (Figure 9.4.21). If one can draw a path along the edges in the 3-cube that starts at any vertex, passes through every other vertex once, and returns to the start, then that sequence of bit patterns can be used to coat the back of the dial so that between every sector there is only one questionable switch. Such a path is not difficult to find, as we will see below.

Figure 9.4.21 The 3-cube

Many A-D conversion problems require many more sectors and switches than this example, and the same kinds of problems can occur. The solution would be to find a path within a much larger yet similar graph. For example, there might be 1,024 sectors with 10 switches, resulting in a graph with 1,024 vertices. Fortunately, our solution will apply to the n-cube for any positive value of n.

A Hamiltonian circuit of the n-cube can be described recursively. The circuit itself, called the Gray Code, is not the only Hamiltonian circuit of the n-cube, but it is the easiest to describe. The standard way to write the Gray Code is as a column of strings, where the last string is followed by the first string to complete the circuit.

Basis for the Gray Code (n = 1): The Gray Code for the 1-cube is G_{1} = \binom{0}{1}Note that the edge between 0 and 1 is used twice in this circuit. That doesn't violate any rules for Hamiltonian circuits, but can only happen if a graph has two vertices.

Recursive definition of the Gray Code: Given the Gray Code for the n-cube, n ≥ 1, then G+ 1 is obtained by (1) listing Gn with each string prefixed with 0, and then (2) reversing the list of strings in Gwith each string prefixed with 1. Symbolically, the recursion can be expressed as follows, where G_{n}^{r}is the reverse of list Gn.

G_{n+1} = \binom{0G_{n}}{1G_{n}^{r}} 

The Gray Codes for the 2-cube and 3-cube are

G_{2} = \begin{pmatrix} 00\\ 01\\ 11\\ 10 \end{pmatrix} and G_{3} = \begin{pmatrix} 000\\ 001\\ 011\\ 010\\ 110\\ 111\\ 101\\ 100 \end{pmatrix}

One question might come to mind at this point. If the coatings of the dial no longer in the sequence from 0 to 7, how would you interpret the patterns that are on the back of the dial as numbers from 0 to 7? In Chapter 14 we will see that if the Gray Code is used, this "decoding" is quite easy.


Example 9.4.22 Applications of the Gray Code. One application of the Gray code was discussed in the Introduction to this book. Another application is in statistics. In a statistical analysis, there is often a variable that depends on several factors, but exactly which factors are significant may not be obvious. For each subset of factors, there would be certain quantities to be calculated. One such quantity is the multiple correlation coefficient for a subset. If the correlation coefficient for a given subset, A, is known, then the value for any subset that is obtained by either deleting or adding an element to A can be obtained quickly. To calculate the correlation coefficient for each set, we simply travel along Gn, where n is the number of factors being studied. The first vertex will always be the string of 0's, which represents the empty set. For each vertex that you visit, the set that it corresponds to contains the kth factor if the kth character is a 1.

The 3-cube and its generalization, the n-cube, play a role in the design of a multiprocessor called a hypercube. A multiprocessor is a computer that consists of several independent processors that can operate simultaneously and are connected to one another by a network of connections. In a hypercube with M = 2processors, the processors are numbered 0 to M 1. Two processors are connected if their binary representations differ in exactly one bit. The hypercube has proven to be the best possible network for certain problems requiring the use of a "supercomputer".



Source: Al Doerr and Ken Levasseur, http://faculty.uml.edu/klevasseur/ads-latex/ads.pdf
Creative Commons License This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License.

Last modified: Wednesday, August 19, 2020, 5:30 PM