Solve recurrence: T(n) = T(n^(1/2)) + Θ(lg lg n)

10,357

Solution 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

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:

enter image description here

Which means that:

enter image description here,

now to transform this big summation notice that enter image description here

The whole lnln(n) sum can be transformed as:

enter image description here

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: enter image description here


Substituting k to our previous equation you will see that the biggest term is:

enter image description here

and therefore the complexity is: enter image description here

P.S. you can see a solution to a similar recurrence here

Share:
10,357
Ruslan Osipov
Author by

Ruslan Osipov

Updated on June 14, 2022

Comments

  • Ruslan Osipov
    Ruslan Osipov almost 2 years

    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.

  • Akhil Nadh PC
    Akhil Nadh PC over 7 years
    from lg k + (lg k) - 1 + (lg k) - 2 + (lg k) - 3 + ... + (lg k) - lg k How did you got Θ((lg k)2) ?
  • templatetypedef
    templatetypedef over 7 years
    This follows from the sum 1 + 2 + 3 + ... + n = n(n+1)/2, plugging in n = lg k.
  • Akhil Nadh PC
    Akhil Nadh PC over 7 years
    Sorry I still didn't get it properly. Can u pls provide step wise reduction from lg k + (lg k) - 1 + (lg k) - 2 + (lg k) - 3 + ... + (lg k) - lg k pls ? Yeah I know that summation . But How can you reduce this still ? Please make it clear
  • templatetypedef
    templatetypedef over 7 years
    @AkhilNadhPC Notice that (lg k) - 1 + (lg k) - 2 + ... + (lg k) - (lg k), written backwards, is 0 + 1 + 2 + ... + (lg k) - 2 + (lg k) - 1 + lg k.
  • Akhil Nadh PC
    Akhil Nadh PC over 7 years
    What I understood is upto this (lg k) - 1 + (lg k) - 2 + ... + (lg k) - (lg k), = (lg k) +(lg k) + ..... +(lg k) -( 1+2+3+4+.... ) = (lg k) +(lg k) + ..... +(lg k) - m(m+1) / 2 How can u relate m = log k ? (here)
  • templatetypedef
    templatetypedef over 7 years
    That would work too. Notice that that simplifies to (lg k)^2 - m(m+1)/2, with m = lg k. Then you have (lg k)^2 - (lg k)(lg k + 1) / 2 ~= (lg k)^2 / 2.
  • laura
    laura over 6 years
    Awesome !!!!what a solution (Y)