A third way to establish this is by induction on the number of nodes, tracking how the null-link count changes each time exactly one new node is added to the tree.
Base case: An empty tree (n=0) has exactly one null link overall — the single null pointer representing "no tree here" — giving 0+1=1, consistent with the formula n+1.
Inductive step: Suppose a tree with k nodes has k+1 null links (the inductive hypothesis). Adding one new node to this tree means attaching it in place of one of the existing null links (making that slot non-null now, a change of -1 null link), while the newly added node itself contributes 2 brand-new null child pointers of its own (a change of +2 null links). The net change is -1+2=+1 null link overall.
Tracking the null-link count node by node from an empty tree confirms it increases by exactly 1 with each new node, reproducing n+1.
Therefore, the correct answer is n+1.