I have this question: what is the runtime (Theta) of this recursive function:
$T(n) = T(n^{\frac{2}{3}}) + 20$
The problem is, I don't know what to do, the recursive function gets to a constant after infinity iterations which makes the problem hard. The master's theorem does not work either as we can't use it (it's not linear aT(n/b) + f(n) ..)
Any help would be appreciated.
2026-03-15 22:31:07.1773613867
Landau Function finding Runtime recursive of irrational function.
17 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
I think i have found the answer.
$n^{(\frac{2}{3})^t} = 2$ we get: $k = \log_{1.5}(log_2(n))$ and we prove that this is Theta of $\log(\log(n))$ by choosing c1 and c2 such that
$c_1 \cdot \log(\log(n)) \leq \log_{1.5}(log_2(n)) \leq c_2 \cdot \log(\log(n))$