Binary Trees

Binary Trees

Definition: Binary Trees are rooted trees where each vertex has either $0$, $1$ or $2$ direct descendent edges associated with it.

For example, the following graph is a binary tree since each vertex has at most $2$ directed descendent edges associated with it.

Screen%20Shot%202014-03-20%20at%207.40.43%20PM.png

Probability and Games

Binary trees appear often in elementary probability and games. For example, what is the probability that you will get $3$ heads in a row when flipping a single fair coin? We can answer this problem algebraically by knowing that the probability of getting a head once is $\frac{1}{2}$, so the probability of landing on heads three times in a row is $\left (\frac{1}{2} \right )^3 = \frac{1}{8}$. However, we can also illustrate this probability with a tree:

Screen%20Shot%202014-03-20%20at%207.49.04%20PM.png

There are $8$ possible paths starting at the root of the tree, but only one path traverses $3$ red edges (representing landing on heads each time). So the probability of landing on heads $3$ times in a row with a fair coin is $\frac{1}{8}$.

Family / Ancestral Trees

Binary trees commonly appear in Family trees where the root of the tree is the earliest known ancestor of a family lineage. Each descendent in the family tree is associated to two parents, and so forth.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License