A balanced binary tree is a binary tree for which the difference in height between any node's two sub-trees is at most 1. (Such a tree is known as an AVL tree.)
What is the minimum number of leaves in such a tree of height $h$?
My thinking is this:
Let $H(h)$ be a function that returns the minimum number of leaves in a balanced binary tree of height $h$, then
$H(h) = H(h-1) + H(h-2) +1 -1 = H(h-1) + H(h-2) = Fibonacci(h)$.
By inspection, $H(0) = 0$ and $H(1) = 1$.
That recursive formula is correct because a balanced binary tree of height $h$ with a minimum number of leaves must have as one sub-tree a balanced binary tree of height $h-1$ with a minimum number of leaves, and as the other sub-tree a balanced binary tree of height $h-2$ with a minimum number of leaves. (Remember that at most a difference of one is permitted between two sub-trees, hence the $h-1$ vs $h-2$.)
We add one and subtract one because in going from height $h-1$ to $h$ we add, and simultaneously remove, a leaf.
Is my reasoning correct?