I'm reviewing some of the theorems that make up the Full binary tree theorem and want to make sure my proof for how the number of internal nodes $I$ is related to the number of total nodes $N$ is correct.
I realize you could relate the number of internal nodes to the number of leaves and them simply add, and go from there but I'm trying not to use that proof in this example.
I'm using induction and I believe my proof valid but something about it seems so simple (and a bit wordy) I'm not sure if I'm missing something. Also if there are any other proofs someone would like to dish out that would be great. I realize you could do this purely with numbers and less "english" if trying to prove this on a perfect binary tree (much tighter restrictions on the tree), however the most concise way I can think of proving this for a full binary tree is rather wordy, and below.
The total number of nodes $N$ in a tree with $I$ internal nodes is $2I + 1$
Base case
A tree with $0$ internal nodes $I$ has $2(0) + 1 = 1$ total nodes.
Assumption
Let's assume that any full binary tree with $I$ internal nodes has $2I+1$ total nodes $N$.
Inductive step
Given a tree $T$ with $I+1$ internal nodes, take one of it's internal nodes whose children are both leaves and remove it's children. $T$ now has one less internal node or $I$ internal nodes meaning it has $2I+1$ total nodes. If we add the children back to our selected node, the number of internal nodes increases by $1 \text{ from } I \Rightarrow I+1$ and our total number of nodes $N$ increases by $2 \text{ from } 2I+1 \Rightarrow 2I+3$ which is the same as $2(I+1) + 1 \quad \blacksquare$.
You went slightly astray with the last sentence: you lost track of the number of internal nodes. If we add the children back in, the number of internal nodes increases by $1$ from $I$ to $I+1$, not from $I+1$ to $I+2$. You also need to show that there actually is an internal node whose children are both leaves. If you’ve already defined the height (or depth, depending on your terminology) of a node, you can pick a leaf $v$ whose height is maximal: its sister must also be a leaf. You can also add a little connective tissue to the induction step, something like this: