I'm reading the Lecture 6 notes from MIT OCW Introduction to Algorithms, which discusses AVL trees, and I'm confused about one of the relations below:
Balance:
Worst when every node differs by 1 -- let $N_h$ = min # nodes in height-h AVL tree.
$\Longrightarrow N_h = N_{h-1} + N_{h-2}+1$
<p>$N_h > 2N_{h-2}$</p> <p>$\Longrightarrow N_h > 2^{h/2}$</p> <p>$\Longrightarrow h < 2 \lg N_h$</p>
I don't understand how to arrive at $N_h > 2^{h/2}$ from $N_h > 2N_{h-2}$. In the lecture video (at T27:25), the instructor simply hand-waves it with:
This looks like two to the something. What's that something? H over two.
Can someone explain the math for that? Thanks.