Graphs 3
Graphs 3
5 5
1 2 1 2
4 3 4
3
6 6
Proof. Consider any leaf of T . This vertex is adjacent to exactly one edge.
Remove this vertex and edge contributing 1 each to the number of vertices
and edges. Continue removing leaf / edge pairs until we are left with just
a single edge. A graph with a single edge has one more vertex than edge,
hence the total number of edges is one less than the total number of vertices.
3 4 4 3
8
The edges of a planar embedding of a graph divide the plane into regions.
Let f be the number of regions of a planar graph, e the number of edges and
v the number of vertices.
Theorem. (Euler’s formula) For any connected planar graph, v − e + f = 2.
Proof. We proceed by induction on the number of edges e. Consider the case
e = 1. There is only one such graph. This graph has v = 2, e = 1 and f = 1.
Hence v − e + f = 2. Assume the formula holds for any connected planar
graph on n edges. Consider a connected planar graph G with n + 1 edges,
v vertices and f regions. Form G0 with statistics e0 , v 0 , and f 0 by removing
any edge which results in another connected graph. In this case, v 0 = v,
e0 = e − 1, and f 0 = f − 1. (why?) Therefore we have 2 = v 0 − e0 + f 0 =
v − (e − 1) + (f − 1) = v − e + f .
In forming G0 , it could have been that removing any edge of G resulted in
a disconnected graph. In this case, G is a tree. (why?) Using the proposition
above, we know that for any tree v − e + f = v − (v − 1) + 1 = 2.
9
12
1 2 1 2
3 4 3 4 3 4
Theorem. A graph is planar iff it does not contain either graph of Figure 14
as a minor.
10