11.1 Introduction To Trees

A tree is a connected undirected graph with no simple circuits.

Theorem 1

An undirected graph is a tree if and only if there is a unique simple path between any two of its vertices.

Suppose that TT is a rooted tree. If vv is a vertex in TT other than the root, the parent of vv is the unique vertiex uu such that there is a direct edge from uu to vv. When uu is the parent of vv, vv is called a child of uu. Vertices with the same parent are called siblings. The ancestors of a vertex other that the root are the vertices in the path from the root to this vertex, excluding the vertex itself and including the root (that is, its parent, its parent's parent, and so on, until the root is reached). The descendants of a vertex vv are those vertices that have vv as an ancestors. A vertex of a rooted tree is called a leaf if it has no children. Vertices that have children are called internal vertices. The root is an internal vertex unless it is the only vertex in the graph, in which case it is a leaf.
If aa is a vertex in a tree, the subtree with aa as its root is the subgraph of the tree consisting of aa and its descendants and all edges incident to these descendants.

Theorem 2

A tree with nn vertices has n1n-1 edges. (Proof by induction. The extra vertex must have a degree of 1, otherwise the graph would contain a cycle and would not be a valid tree.)

Theorem 3

A full m-ary tree with ii internal vertices contains n=mi+1n = mi + 1 vertices.

Homework

p777: 16, 17, 18, 28

16. Which complete bipartite graphs Km,nK_{m,n}, where mm and nn are positive integers, are trees?

Solution

When m=1m=1 and nn is any positive integer, graphs Km,nK_{m,n} are trees.

17. How many edges does a tree with 10,000 vertices have?

Solution

A tree with n vertices has (n-1) edged. The tree with 10,000 vertices has 9,999 edges.

18. How many vertices does a full 5-ary tree with 100 internal vertices have?

Solution

The number of vertices is 1005+1=501100 \cdot 5 + 1 = 501.

28. A complete m-ary tree is a full m-ary tree in which every leaf is at the same level. How many vertices and how many leaves does a complete m-ary tree of height h have?

Solution

A complete m-ary tree of height h has m0+m1++mhm^0 + m^1 + \cdot +m^h vertices and mhm^h leaves.
Proof by induction.
Basic step When h = 0, the tree has m0=1m^0 = 1 vertex and m0=1m^0 = 1 leaves.
Hypothesis Assume that the number of leaves for a complete m-ary tree with height k is mkm^k and the number of vertices is m0+m1++mkm^0 + m^1 + \cdots +m^k.
Inductive Step We need to prove that the number of leaves for a complete m-ary tree with height k+1k+1 is mk+1m^{k+1} and the number of vertices is m0+m1++mk+mk+1m^0 + m^1 + \cdots +m^k + m^{k+1}.
Let TT be a complete m-ary tree of height k+1k+1 and consider a subgraph TT' that results from removing all leaves from TT. TT' is a complete m-ary tree of height kk, so TT' has mkm^k leaves and m0+m1++mkm^0 + m^1 + \cdots +m^k vertices (By hypothesis).
Each leaf of TT' has mm children in TT and each leaves of TT is the child of some leaf of TT'. Therefore, TT has mmk=mk+1m \cdot m^k = m^{k+1} leaves and m0+m1++mk+mk+1m^0 + m^1 + \cdots +m^k + m^{k+1} vertices.