$$ \DeclareMathOperator{ceil}{ceil} T(n) = \begin{cases} 10 & \text{ if } n=1 \\ 7 \, T(\ceil(n/2)) + n^2 & \text{ if } n>1 \end{cases} $$ a) Use n to find positive real constants c,d such that T(n) <= c n^{lg base 2 7} - d n^2, for all n that are powers of 2
I'm having trouble understanding when to use my Induction Hypothesis:
BC: 10 <= c
IS: let n>= 1
Suppose f(n)<= c n^{lg base 2 7} - d n^2
f(n+1) = 7 T(ceil(n/2)) + n^2
<= 7 T(n+1) + n^2
which is where i want to use the IH, but it makes no sense to use the IH on f(n+1) because it defeats the purpose, however i dont know how else to deal with the ceil