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 is a rooted tree. If is a vertex in other than the root, the parent of is the unique vertiex such that there is a direct edge from to . When is the parent of , is called a child of . 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 are those vertices that have 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 is a vertex in a tree, the subtree with as its root is the subgraph of the tree consisting of and its descendants and all edges incident to these descendants.
Theorem 2
A tree with vertices has 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 internal vertices contains vertices.
Homework
p777: 16, 17, 18, 28
16. Which complete bipartite graphs , where and are positive integers, are trees?
Solution
When and is any positive integer, graphs 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 .
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 vertices and leaves.
Proof by induction.
Basic step When h = 0, the tree has vertex and leaves.
Hypothesis Assume that the number of leaves for a complete m-ary tree with height k is and the number of vertices is .
Inductive Step We need to prove that the number of leaves for a complete m-ary tree with height is and the number of vertices is .
Let be a complete m-ary tree of height and consider a subgraph that results from removing all leaves from . is a complete m-ary tree of height , so has leaves and vertices (By hypothesis).
Each leaf of has children in and each leaves of is the child of some leaf of . Therefore, has leaves and vertices.