Recursion Tree Algorithm Math Quesiton

34 Views Asked by At

Screen shot from text book

Hello, I am rusty on my math. Can someone expand step by step whats going on in the induction hypothesis. Where does the 1 go? How is it being added? I just am not seeing the algebra steps that should be obvious to me.

Thanks.

1

There are 1 best solutions below

2
On BEST ANSWER

Note that $$T(n)>2^{(n-1)/2}+2^{(n-2)/2}+1>2^{(n-2)/2}+2^{(n-2)/2}$$ because $$1>0, (n-1)/2>(n-2)/2$$ so by transitivity, $$T(n)>2^{(n-2)/2}+2^{(n-2)/2}=2^{n/2}$$