Skip to main content
Logo image

Section 15.3 Connected vertices, graphs, and components

connected vertices
a pair of vertices \(v,v'\) such that there exists a walk beginning at \(v\) and ending at \(v'\)
connected graph
every pair of vertices is connected

Example 15.3.1. A connected graph.

A diagram of an example connected graph.

Example 15.3.2. A nonconnected graph.

A diagram of an example nonconnected graph.
Being connected is a symmetric relationship between vertices, and walks connecting vertices can be shortened to paths.
As usual, we prove the equivalence of multiple statements using a cycle of logical implications.

Statement 2 implies Statement 3.

Suppose \(v_0, e_1, v_1, \dotsc, v_{n - 1}, e_n, v_n\) is a walk with \(v_0 = v\) and \(v_n = v'\text{.}\) If this walk is not a path, then there is a repeated vertex. Suppose \(v_j = v_i\) with \(j \gt i\text{.}\) Then
\begin{equation*} v_0, e_1, v_1, \dotsc, v_{i-1}, e_i, v_j, e_{j+1}, \dotsc, v_{n - 1}, e_n, v_n \end{equation*}
is also a walk from \(v\) to \(v'\text{.}\) Keep removing repeated vertices in this way until a path is obtained.

Statement 3 implies Statement 4.

Just reverse the order of the vertices and edges in the path from \(v\) to \(v'\) to obtain a walk in the other direction.

Statement 4 implies Statement 5.

As before, if the walk from \(v'\) to \(v\) is not a path, each pair of repeated vertices can be eliminated by “snipping out” the portion of the walk between them.

Statement 5 implies Statement 1.

Reverse the path from \(v'\) to \(v\) to obtain a walk from \(v\) to \(v'\text{,}\) thereby satisfying the definition of connected vertices.
A nonconnected graph can be considered to simply be a collection of connected subgraphs.
connected component (working definition)
a connected subgraph of a graph which is not contained in any larger connected subgraph of that graph
connected component (formal definition)
a subgraph \(G'\) of a graph \(G\) that satisfies the following:
  1. \(G'\) is connected;
  2. if \(G''\) is a subgraph of \(G\) such that \(G''\) is connected and \(G' \preceq G''\text{,}\) then \(G'' = G'\)

Example 15.3.4. Breaking a nonconnected graph into connected components.

Considering Figure 15.3.5 below as a single graph, we have placed the connected components (of which there are three) into boxes.
A graph to map the possible paths in another graph.
Figure 15.3.5. A nonconnected graph as a collection of connected subgraphs.
This nonconnected graph has other connected subgraphs. For example, the subgraph that contains only the left-most two vertices joined by a single edge is a connected subgraph. But that connected graph is not a connected component because it is a subgraph of a larger connected subgraph.

Example 15.3.6. Connected components do not depend on how the graph is represented diagrammatically.

A nonconnected graph drawn with overlapping connected components.
(a) Overlapping connected components.
A nonconnected graph drawn with non-overlapping connected components.
(b) Non-overlapping connected components.
Figure 15.3.7. Two different representations of the same nonconnected graph.
The two graphs in Figure 15.3.7 are in fact the same graph, just with different diagrammatic representations. In the second version of the graph, we have again identified connected components by placing each of them in a box.

Example 15.3.8. A connected graph has one component.

If a graph is connected, then the entire graph is a largest connected subgraph possible.
A connected graph with one connected component.
Figure 15.3.9. A connected graph with one connected component.
By (strong) induction.

Base case \(n=1\).

Every graph with only one vertex is connected and satisfies \(\abs{E} \ge 0\text{.}\)

Induction step.

Assume \(k \ge 1\) and the statement is true for all \(n \le k\text{.}\) Let \(G = (V,E)\) be a connected graph with \(k + 1\) vertices. We must show \(\abs{E} \ge k\text{.}\)
Arbitrarily choose some vertex \(v_0 \in V\text{,}\) and let \(G' = (V', E')\) be the graph obtained from \(G\) by removing \(v_0\) and all edges incident to it. Unfortunately, \(G'\) might not be connected. Let \(G_1', \dotsc, G_\ell'\) be its connected components. Write \(G_i' = (V_i',E_i')\text{,}\) and let \(n_i = \abs{V_i'}\text{.}\) Then each \(G_i'\) is connected and has at most \(k\) vertices, so the induction hypothesis applies. Also note that \(n_1 + \dotsb + n_\ell = k\text{,}\) since every vertex of \(G\) except \(v_0\) is part of exactly one subgraph \(G_i'\text{.}\)
A depiction of removing one vertex from a graph.
(a) “Extra” vertex \(v_0\) and the remaining subgraph \(G'\text{.}\)
A depiction of removing one vertex from a graph and splitting remaining subgraph into connected components.
(b) Subgraph \(G'\) split into connected components.
Figure 15.3.12. Removing “extra” vertex \(v_0\text{,}\) splitting remaining subgraph into connected components.
Therefore, using our induction hypothesis we may calculate
\begin{align*} \abs{E} \amp = \abs{E'} + \abs{\{\text{edges in } G \text{ incident to } v_0\}} \\ \amp = \abs{E_1'} + \dotsb \abs{E_\ell'} + \abs{\{\text{edges in } G \text{ incident to } v_0\}} \\ \amp \ge (n_1 - 1) + \dotsb + (n_\ell - 1) + \abs{\{\text{edges in } G \text{ incident to } v_0\}} \\ \amp = k - \ell + \abs{\{\text{edges in } G \text{ incident to } v_0\}}. \end{align*}
However, since \(G\) is connected, \(v_0\) must be the glue keeping the subgraphs \(\{G_i'\}\) together. That is, for each \(i\) there must be at least one edge between \(v_0\) and some vertex of \(G_i'\text{.}\) Therefore,
\begin{align*} \abs{E} \amp \ge k - \ell + \abs{\{\text{edges in } G \text{ incident to } v_0\}} \\ \amp \ge k - \ell + \ell \\ \amp = k. \end{align*}