1
vote
1answer
125 views

Understanding Master Theorem

Generic form: T(n) = aT(n/b) + f(n) So i must compare n^logb(a) with f(n) if n^logba > f(n) is case 1 and T(n)=Θ(n^logb(a)) if n^logba < f(n) is case 2 and T(n)=Θ((n^logb(a))(logb(a))) Is that ...
0
votes
1answer
178 views

The master method - why can't it solve T(n) = T(n/2) + n^2/logn?

The master method - why can't it solve T(n) = 4*T(n/2) + (n^2)/logn? I realize it can solve recurrences of type T(n) = aT(n/b) + f(n) On MIT OCW they mentioned that it couldn't solve the above ...
0
votes
1answer
96 views

Algorithms: Method to solve the stated recurrence? [closed]

Need help finding a method for solving the following: Given f(n) to be 9f(n/3)+(n^2)*(log n) for all n>1 and the log used is of base 3. And given f(1)=1. Solve for f(n) Tried the master theorem, but ...