§ Numbering nodes in a tree


If we consider a tree such as:
      a
b         c
        d   e

The "standard way" of numbering, by starting with a 0 and then appending a 0 on going to the left, appending a 1 on going to the right doesn't make a great deal of sense. On the other hand, we can choose to number them as follows:

      1
0.5       1.5
       1.25     1.75


1+1/21/4+1/8+1/16+=1+1/21/4+1/4=1.5 \begin{aligned} &1 + 1/2 - 1/4 + 1/8 + 1/16 + \dots \\ &= 1 + 1/2 - 1/4 + 1/4 \\ &= 1.5 \end{aligned}