To prove that a full binary tree with N≥1 leaves has 2N-1 nodes, the approach involves mathematical induction. The base case is established with P(1), where a single node equals one leaf, confirming the formula. Assuming P(k) holds true, the proof shows that adding one leaf (to make k+1) requires adding two nodes, leading to P(k+1) = 2k + 1. This confirms the inductive step, completing the proof. The definitions of full and complete binary trees were clarified, but the argument remains valid for both types.