The master function is
T(n) = aT(n/b) + (nk * logp n)
Where a>=0, b>1, k>=0, and p is a real number
If we satisfy all the above variable conditions, then yes, the master's theorem is applicable.
Given Function is f(n) = log log n
log log n is as same as log2 n
F(n) = log2 n
We can write F(n) as
F(n) = 0*T(n/b) + (n0*log2 n)
Here a = 0 but b is unknown. So, b can't be 0. The value of b can be anything greater than 0
K = 0 and p = 2
Since b is unknown, it is difficult to apply to the master's theorem.
Therefore, The master's theorem is not applicable.
Please don't forget to give a positive rating to the answer. Your rating motivates experts to help other students also. Thank you :)
Get Answers For Free
Most questions answered within 1 hours.