Solving Recurrences - find an asymptotically right bound

27 Views Asked by At

I find this question very tricky:

enter image description here

Got stuck very fast after the basics-

enter image description here

I have been on this for too long. Help will be much appreciated.

1

There are 1 best solutions below

0
On BEST ANSWER

My approach would be to let $n = 2^t$ and $F(t) = T(2^t)$. This gives us $F(t) = F\left(\frac{t}{2}\right)+\Theta(\log t)$, which we can approach with the Master Theorem with $a=1$, $b=2$, and Case 2 as in the wiki page: https://en.wikipedia.org/wiki/Master_theorem

Thus $F(t) = \Theta\left(\log^2t\right)$, and hence $T(n) = F(\log n) = \Theta\left((\log\log n)^2\right)$