
In mathematics and computer science, an unrooted binary tree is an
unrooted tree in which each
vertex has either one or three neighbors.
Definitions
A
free tree or unrooted tree is a
connected undirected graph with no
cycles. The vertices with one neighbor are the ''leaves'' of the tree, and the remaining vertices are the ''internal nodes'' of the tree. The
degree of a vertex is its number of neighbors; in a tree with more than one node, the leaves are the vertices of degree one. An unrooted binary tree is a free tree in which all internal nodes have degree exactly three.
In some applications it may make sense to distinguish subtypes of unrooted binary trees: a
planar embedding of the tree may be fixed by specifying a cyclic ordering for the edges at each vertex, making it into a
plane tree. In computer science, binary trees are often rooted and ordered when they are used as
data structure
In computer science, a data structure is a data organization and storage format that is usually chosen for Efficiency, efficient Data access, access to data. More precisely, a data structure is a collection of data values, the relationships amo ...
s, but in the applications of unrooted binary trees in
hierarchical clustering and
evolutionary tree reconstruction, unordered trees are more common.
Additionally, one may distinguish between trees in which all vertices have distinct labels, trees in which the leaves only are labeled, and trees in which the nodes are not labeled. In an unrooted binary tree with ''n'' leaves, there will be ''n'' − 2 internal nodes, so the labels may be taken from the set of integers from 1 to 2''n'' − 1 when all nodes are to be labeled, or from the set of integers from 1 to ''n'' when only the leaves are to be labeled.
[.]
Related structures
Rooted binary trees
An unrooted binary tree ''T'' may be transformed into a full rooted
binary tree
In computer science, a binary tree is a tree data structure in which each node has at most two children, referred to as the ''left child'' and the ''right child''. That is, it is a ''k''-ary tree with . A recursive definition using set theor ...
(that is, a rooted tree in which each non-leaf node has exactly two children) by choosing a ''root edge'' ''e'' of ''T'', placing a new root node in the middle of ''e'', and directing every edge of the resulting subdivided tree away from the root node. Conversely, any full rooted binary tree may be transformed into an unrooted binary tree by removing the root node, replacing the path between its two children by a single undirected edge, and suppressing the orientation of the remaining edges in the graph. For this reason, there are exactly 2''n'' −3 times as many full rooted binary trees with ''n'' leaves as there are unrooted binary trees with ''n'' leaves.
Hierarchical clustering
A
hierarchical clustering of a collection of objects may be formalized as a
maximal family of sets
In set theory and related branches of mathematics, a family (or collection) can mean, depending upon the context, any of the following: set, indexed set, multiset, or class. A collection F of subsets of a given set S is called a family of su ...
of the objects in which no two sets cross. That is, for every two sets ''S'' and ''T'' in the family, either ''S'' and ''T'' are disjoint or one is a subset of the other, and no more sets can be added to the family while preserving this property. If ''T'' is an unrooted binary tree, it defines a hierarchical clustering of its leaves: for each edge (''u'',''v'') in ''T'' there is a cluster consisting of the leaves that are closer to ''u'' than to ''v'', and these sets together with the empty set and the set of all leaves form a maximal non-crossing family. Conversely, from any maximal non-crossing family of sets over a set of ''n'' elements, one can form a unique unrooted binary tree that has a node for each triple (''A'',''B'',''C'') of disjoint sets in the family that together cover all of the elements.
Evolutionary trees
According to simple forms of the
theory of evolution, the history of life can be summarized as a
phylogenetic tree
A phylogenetic tree or phylogeny is a graphical representation which shows the evolutionary history between a set of species or taxa during a specific time.Felsenstein J. (2004). ''Inferring Phylogenies'' Sinauer Associates: Sunderland, MA. In ...
in which each node describes a species, the leaves represent the species that exist today, and the edges represent ancestor-descendant relationships between species. This tree has a natural orientation from ancestors to descendants, and a root at the
common ancestor
Common descent is a concept in evolutionary biology applicable when one species is the ancestor of two or more species later in time. According to modern evolutionary biology, all living beings could be descendants of a unique ancestor commonl ...
of the species, so it is a rooted tree. However, some methods of reconstructing binary trees can reconstruct only the nodes and the edges of this tree, but not their orientations.
For instance,
cladistic methods such as
maximum parsimony use as data a set of binary attributes describing features of the species. These methods seek a tree with the given species as leaves in which the internal nodes are also labeled with features, and attempt to minimize the number of times some feature is present at only one of the two endpoints of an edge in the tree. Ideally, each feature should only have one edge for which this is the case. Changing the root of a tree does not change this number of edge differences, so methods based on parsimony are not capable of determining the location of the tree root and will produce an unrooted tree, often an unrooted binary tree.
Unrooted binary trees also are produced by methods for inferring evolutionary trees based on quartet data specifying, for each four leaf species, the unrooted binary tree describing the evolution of those four species, and by methods that use
quartet distance to measure the distance between trees.
Branch-decomposition
Unrooted binary trees are also used to define
branch-decompositions of graphs, by forming an unrooted binary tree whose leaves represent the edges of the given graph. That is, a branch-decomposition may be viewed as a hierarchical clustering of the edges of the graph. Branch-decompositions and an associated numerical quantity, branch-width, are closely related to
treewidth and form the basis for efficient
dynamic programming algorithms on graphs.
[.]
Enumeration
Because of their applications in hierarchical clustering, the most natural
graph enumeration problem on unrooted binary trees is to count the number of trees with ''n'' labeled leaves and unlabeled internal nodes. An unrooted binary tree on ''n'' labeled leaves can be formed by connecting the ''n''th leaf to a new node in the middle of any of the edges of an unrooted binary tree on ''n'' − 1 labeled leaves. There are 2''n'' − 5 edges at which the ''n''th node can be attached; therefore, the number of trees on ''n'' leaves is larger than the number of trees on ''n'' − 1 leaves by a factor of 2''n'' − 5. Thus, the number of trees on ''n'' labeled leaves is the
double factorial
In mathematics, the double factorial of a number , denoted by , is the product of all the positive integers up to that have the same Parity (mathematics), parity (odd or even) as . That is,
n!! = \prod_^ (n-2k) = n (n-2) (n-4) \cdots.
Restated ...
:
The numbers of trees on 2, 3, 4, 5, ... labeled leaves are
:1, 1, 3, 15, 105, 945, 10395, 135135, 2027025, 34459425, ... .
Fundamental Equalities
The leaf-to-leaf path-length on a fixed Unrooted Binary Tree (UBT) T encodes the number of edges belonging to the unique path in T connecting a given leaf to another leaf. For example, by referring to the UBT shown in the image on the right, the path-length
between the leaves 1 and 2 is equal to 2 whereas the path-length
between the leaves 1 and 3 is equal to 3. The path-length sequence from a given leaf on a fixed UBT T encodes the lengths of the paths from the given leaf to all the remaining ones. For example, by referring to the UBT shown in the image on the right, the path-length sequence from the leaf 1 is
. The set of path-length sequences associated to the leaves of T is usually referred to as the ''path-length sequence collection'' of T
.
Daniele Catanzaro,
Raffaele Pesenti and
Laurence Wolsey showed
that the path-length sequence collection encoding a given UBT with n leaves must satisfy specific equalities, namely
*
for all