Skip to main content
Mathematics LibreTexts

10.2: Spanning Trees

  • Page ID
    80541
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    Motivation

    The topic of spanning trees is motivated by a graph-optimization problem.

    A graph of Atlantis University (Figure \(\PageIndex{1}\)) shows that there are four campuses in the system. A new secure communications system is being installed and the objective is to allow for communication between any two campuses; to achieve this objective, the university must buy direct lines between certain pairs of campuses. Let \(G\) be the graph with a vertex for each campus and an edge for each direct line. Total communication is equivalent to \(G\) being a connected graph. This is due to the fact that two campuses can communicate over any number of lines. To minimize costs, the university wants to buy a minimum number of lines.

    clipboard_e8f2ad5b97030e51220f44b764735a735.pngFigure \(\PageIndex{1}\): Atlantis University Graph

    The solutions to this problem are all trees. Any graph that satisfies the requirements of the university must be connected, and if a cycle does exist, any line in the cycle can be deleted, reducing the cost. Each of the sixteen trees that can be drawn to connect the vertices North, South, East, and West (see Exercise 10.1.1) solves the problem as it is stated. Note that in each case, three direct lines must be purchased. There are two considerations that can help reduce the number of solutions that would be considered.

    • Objective 1: Given that the cost of each line depends on certain factors, such as the distance between the campuses, select a tree whose cost is as low as possible.
    • Objective 2: Suppose that communication over multiple lines is noisier as the number of lines increases. Select a tree with the property that the maximum number of lines that any pair of campuses must use to communicate with is as small as possible.

    Typically, these objectives are not compatible; that is, you cannot always simultaneously achieve these objectives. In the case of the Atlantis university system, the solution with respect to Objective 1 is indicated with solid lines in Figure \(\PageIndex{1}\). There are four solutions to the problem with respect to Objective 2: any tree in which one campus is directly connected to the other three. One solution with respect to Objective 2 is indicated with dotted lines in Figure \(\PageIndex{1}\). After satisfying the conditions of Objective 2, it would seem reasonable to select the cheapest of the four trees.

    Definition

    Definition \(\PageIndex{1}\): Spanning Tree

    Let \(G = (V, E)\) be a connected undirected graph. A spanning tree for \(G\) is a spanning subgraph, Definition 9.1.5, of \(G\) that is a tree.

    Note \(\PageIndex{1}\)

    1. If \((V, E')\) is a spanning tree, \(\lvert E' \rvert =\lvert V \rvert - 1\text{.}\)
    2. The significance of a spanning tree is that it is a minimal spanning set. A smaller set would not span the graph, while a larger set would have a cycle, which has an edge that is superfluous.

    For the remainder of this section, we will discuss two of the many topics that relate to spanning trees. The first is the problem of finding Minimal Spanning Trees, which addresses Objective 1 above. The second is the problem of finding Minimum Diameter Spanning Trees, which addresses Objective 2.

    Definition \(\PageIndex{2}\): Minimal Spanning Tree

    Given a weighted connected undirected graph \(G = (V, E, w)\text{,}\) a minimal spanning tree is a spanning tree \((V, E')\) for which \(\sum_{e\in E'} w(e)\) is as small as possible.

    Prim's Algorithm

    Unlike many of the graph-optimization problems that we've examined, a solution to this problem can be obtained efficiently. It is a situation in which a greedy algorithm works.

    Definition \(\PageIndex{3}\): Bridge

    Let \(G = (V, E)\) be an undirected graph and let \(\{L, R\}\) be a partition of \(V\text{.}\) A bridge between \(L\) and \(R\) is an edge in \(E\) that connects a vertex in \(L\) to a vertex in \(R\text{.}\)

    Theorem \(\PageIndex{1}\)

    Let \(G = (V, E, w)\) be a weighted connected undirected graph. Let \(V\) be partitioned into two sets \(L\) and \(R\text{.}\) If \(e^*\) is a bridge of least weight between \(L\) and \(R\text{,}\) then there exists a minimal spanning tree for \(G\) that includes \(e^*\text{.}\)

    Proof

    ASuppose that no minimal spanning tree including \(e^*\) exists. Let \(T = (V, E')\) be a minimal spanning tree. If we add \(e^*\) to \(T\text{,}\) a cycle is created, and this cycle must contain another bridge, \(e\text{,}\) between \(L\) and \(R\text{.}\) Since \(w\left(e^*\right) \leq w(e)\text{,}\) we can delete \(e\) and the new tree, which includes \(e^*\) must also be a minimal spanning tree.

    Example \(\PageIndex{1}\): Some Bridges

    The bridges between the vertex sets \(\{a, b, c\}\) and \(\{d, e\}\) in Figure \(\PageIndex{2}\) are the edges \(\{b, d\}\) and \(\{c, e\}\text{.}\) According to the theorem above, a minimal spanning tree that includes \(\{b, d\}\) exists. By examination, you should be able to see that this is true. Is it true that only the bridges of minimal weight can be part of a minimal spanning tree?

    clipboard_e600bf60ec503fae50fc89e33f13c178d.pngFigure \(\PageIndex{2}\): Bridges between two sets

    Theorem \(\PageIndex{1}\) essentially tells us that a minimal spanning tree can be constructed recursively by continually adding minimally weighted bridges to a set of edges.

    Algorithm \(\PageIndex{1}\): Prim's Algorithm

    Let \(G = (V, E, w)\) be a connected, weighted, undirected graph, and let \(v_0\) be an arbitrary vertex in \(V\text{.}\) The following steps lead to a minimal spanning tree for \(G\text{.}\) \(L\) and \(R\) will be sets of vertices and \(E'\) is a set of edges.

    1. (Initialize) \(L = V - \left\{v_0\right\}\text{;}\) \(R = \left\{v_0\right\}\text{;}\) \(E' = \emptyset\text{.}\)
    2. (Build the tree) While \(L\neq \emptyset\text{:}\)
      1. Find \(e^* = \left\{v_L,v_R\right\}\text{,}\) a bridge of minimum weight between \(L\) and \(R\text{.}\)
      2. \(R = R \cup \left\{v_L \right\}\text{;}\) \(L = L - \left\{v_L\right\}\) ; \(E' =E'\cup \left\{e^*\right\}\)
    3. Terminate with a minimal spanning tree \((V, E')\text{.}\)

    Note \(\PageIndex{2}\)

    1. If more than one minimal spanning tree exists, then the one that is obtained depends on \(v_0\) and the means by which \(e^*\) is selected in Step 2.
    2. Warning: If two minimally weighted bridges exist between \(L\) and \(R\text{,}\) do not try to speed up the algorithm by adding both of them to \(E\)'.
    3. That Algorithm \(\PageIndex{1}\) yields a minimal spanning tree can be proven by induction with the use of Theorem \(\PageIndex{1}\).
    4. If it is not known whether \(G\) is connected, Algorithm \(\PageIndex{1}\) can be revised to handle this possibility. The key change (in Step 2.1) would be to determine whether any bridge at all exists between \(L\) and \(R\text{.}\) The condition of the while loop in Step 2 must also be changed somewhat.

    Example \(\PageIndex{2}\): A Small Example

    Consider the graph in Figure \(\PageIndex{3}\). If we apply Prim's Algorithm, Algorithm \(\PageIndex{1}\), starting at \(a\text{,}\) we obtain the following edge list in the order given: \(\{a, f\}, \{f, e\}, \{e, c\}, \{c, d\}, \{f, b\}, \{b, g\}\text{.}\) The total of the weights of these edges is 20. The method that we have used (in Step 2.1) to select a bridge when more than one minimally weighted bridge exists is to order all bridges alphabetically by the vertex in \(L\) and then, if further ties exist, by the vertex in \(R\text{.}\) The first vertex in that order is selected in Step 2.1 of the algorithm.

    clipboard_e30a3d5155df109eff6d336fc57d50780.pngFigure \(\PageIndex{3}\): A small weighted graph

    Definition \(\PageIndex{4}\): Minimum Diameter Spanning Tree

    Given a connected undirected graph \(G = (V, E)\text{,}\) find a spanning tree \(T = (V, E')\) of \(G\) such that the longest path in \(T\) is as short as possible.

    Example \(\PageIndex{3}\): The Case for Complete Graphs

    The Minimum Diameter Spanning Tree Problem is trivial to solve in a \(K_n\text{.}\) Select any vertex \(v_0\) and construct the spanning tree whose edge set is the set of edges that connect \(v_0\) to the other vertices in the \(K_n\). Figure \(\PageIndex{4}\) illustrates a solution for \(n=5\text{.}\)

    clipboard_e0a54a570ef03a1304d91766e99449420.pngFigure \(\PageIndex{4}\): Minimum diameter spanning tree for \(K_{5}\)

    For incomplete graphs, a two-stage algorithm is needed. In short, the first step is to locate a “center” of the graph. The maximum distance from a center to any other vertex is as small as possible. Once a center is located, a breadth-first search of the graph is used to construct the spanning tree.

    Exercises

    Exercise \(\PageIndex{1}\)

    Suppose that after Atlantis University's phone system is in place, a fifth campus is established and that a transmission line can be bought to connect the new campus to any old campus. Is this larger system the most economical one possible with respect to Objective 1? Can you always satisfy Objective 2?

    Answer

    It might not be most economical with respect to Objective 1. You should be able to find an example to illustrate this claim. The new system can always be made most economical with respect to Objective 2 if the old system were designed with that objective in mind.

    Exercise \(\PageIndex{2}\)

    Construct a minimal spanning tree for the capital cities in New England (see Table 9.5.1).

    Exercise \(\PageIndex{3}\)

    Show that the answer to the question posed in Example \(\PageIndex{1}\) is “no.”

    Answer

    In the figure below, \(\{1,2\}\) is not a minimal bridge between \(L=\{1,4\} \textrm{ and } R=\{2,3\}\text{,}\) but it is part of the minimal spanning tree for this graph.

    clipboard_ec4bf32632c0075d7db4878fdc8db486f.pngFigure \(\PageIndex{5}\)

    Exercise \(\PageIndex{4}\)

    Find a minimal spanning tree for the following graphs.

    clipboard_ef5e9e58863428c7318402f15db9c4144.pngFigure \(\PageIndex{6}\)
    clipboard_ee8b56ba0ebeb30bf53e7dec33bce6a40.pngFigure \(\PageIndex{7}\)
    clipboard_e8011afa500e471f1507b598254f71359.pngFigure \(\PageIndex{8}\)

    Exercise \(\PageIndex{5}\)

    Find a minimum diameter spanning tree for the following graphs.

    clipboard_eeb3e5d84bc277c9f4b95139255df28ec.pngFigure \(\PageIndex{9}\)
    clipboard_ed47c65da6c916b853419e338db4a1e78.pngFigure \(\PageIndex{10}\)
    Answer
    1. Edges in one solution are: \(\{8,7\},\{8,9\},\{8,13\},\{7,6\},\{9,4\},\{13,12\},\{13,14\},\{6,11\},\{6,1\},\{1,2\},\{4,3\},\{4,5\},\{14,15\}, \textrm{ and } \{5,10\}\)
    2. Vertices 8 and 9 are centers of the graph. Starting from vertex 8, a minimum diameter spanning tree is \(\{\{8, 3\}, \{8, 7\}, \{8, 13\}, \{8, 14\}, \{8, 9\}, \{3, 2\}, \{3, 4\}, \{7, 6\}, \{13, 12\}, \{13, 19\}, \{14, 15\}, \{9, 16\}, \{9, 10\}, \{6, 1\}, \{12, 18\}, \{16, 20\}, \{16, 17\}, \{10, 11\}, \{20, 21\}, \{11, 5\}\}.\) The diameter of the tree is 7.

    Exercise \(\PageIndex{6}\)

    In each of the following parts justify your answer with either a proof or a counterexample.

    1. Suppose a weighted undirected graph had distinct edge weights. Is it possible that no minimal spanning tree includes the edge of minimal weight?
    2. Suppose a weighted undirected graph had distinct edge weights. Is it possible that every minimal spanning tree includes the edge of maximal weight? If true, under what conditions would it happen?

    This page titled 10.2: Spanning Trees is shared under a CC BY-NC-SA 3.0 license and was authored, remixed, and/or curated by Al Doerr & Ken Levasseur via source content that was edited to the style and standards of the LibreTexts platform; a detailed edit history is available upon request.