I'm trying to prove $i(T) = \frac{n(T)-1}{2}$ in a full binary tree where $i(T)$ is the number of the internal nodes (Nodes that don't have leaves) and $n(T)$ is the total number of nodes.
My base case is a full binary tree with 1 node as it would count as a leaf and satisfy the claim.
My inductive hypothesis is that a tree T with a node R and subtrees X and Y such that $i(X) = \frac{n(X)-1}{2}$ and $i(Y) = \frac{n(Y)-1}{2}$ are assumed.
I'm stuck on the actual inductive step on how to show this. How can I do this?