How can you solve the recurrence $$3T(n) = T(n/3)+ \sqrt{\log n}$$ using the master theorem?
I am lost in this question.
How can you solve the recurrence $$3T(n) = T(n/3)+ \sqrt{\log n}$$ using the master theorem?
I am lost in this question.
Asymptotically, T(n) ≈ sqrt (log (n)) / 2. That's the answer to your question. It's very unlikely that it is the answer to the question you wanted to ask.
I didn't use the master theorem to solve this, but a spreadsheet :-)