'Solve recurrence: T(n) = T(n^(1/2)) + Θ(lg lg n) [closed]
Started learning algorithms. I understand how to find theta-notation from a 'regular recurrence' like T(n) = Tf(n) + g(n). But I am lost with this recurrence: problem 1-2e:
T(n) = T(√n) + Θ(lg lg n)
How do I choose the method to find theta? And what, uh, this recurrence is? I just do not quite understand notation-inside-a-recurrence thing.
Solution 1:[1]
This is a great place to use a variable substitution. We begin with
T(n) = T(?n) + ?(log log n),
where the parameter n decays by a square root factor. When you see something like this, a common transform that works well is to define a new recurrence by setting S(m) = T(2m). If we do that here, we get the following:
S(m) = T(2m)
= T(?(2m)) + ?(log log 2m)
= T(2m/2) + ?(log m)
= S(m / 2) + ?(log m).
In other words, we now have the recurrence
S(m) = S(m / 2) + ?(log m).
This recurrence seems a lot easier to work with, since we no longer have that square root term shrinking things down. And in particular, this happens to be something the Master Theorem takes care of. Specifically, we have a = 1, b = 2, and d = 0. (Why do we have d = 0? Because we can think of ?(log m) as m0 ?(log m)). The Master Theorem then tells us that this solves to
S(m) = ?((log m)2).
We've just solved the recurrence S(m), but we were interested in solving the recurrence T(n). How do we connect them? Well, since S(m) = T(2m), we can - assuming n is a perfect power of two - rewrite this as S(log n) = T(n). That then lets us see that
T(n) = S(log n)
= ?((log log n)2),
which is the solution of the recurrence.
Solution 2:[2]
Here is how to solve it using math. I will be using lnln(n) instead of O(lnln(n)). This is mostly to reduce the length of the formulae and you can do absolutely the same with big-O. So:
Which means that:
now to transform this big summation notice that 
The whole lnln(n) sum can be transformed as:
And our only problem is to find some connection between n and k, which can be easily derived from the latest T(...) term.
To do this we have to to find a reasonable bound condition for the latest term. This can be done by trying a couple of integers like 0, 1, 2. With 2 you have: 
Substituting k to our previous equation you will see that the biggest term is:
and therefore the complexity is: 
P.S. you can see a solution to a similar recurrence here
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | Community |




