I am trying to understand a proof by induction in my algorithms text book. Here's the author is proving using induction that the T(n) will always be greater than 2^(n/2) (This is for calculating the nth fibonacci number using the recursive algorithm):

What I don't understand is the very last step, where he is manipulating the equation. How does he go from:
> 2^(n-1)/2 + 2^(n-2)/2 +1
to
> 2^(n-2)/2 + 2^(n-2)/2 +1
He just randomly changes 2^(n-1)/2 to 2^(n-2)/2. Is this a mistake?
Thanks.