I am trying to solve the following recurrence relation using the master theorem:
$ T(n) = 4T(n/2) + n^2 \log n$
So: $a=4 ,b=2, f(n)=n^2\log n$ , then $n^{\log_2 4}=n^2 $
Now i know that $n^2 \log n $ is larger .
Can I apply the master theorem to this problem?
Thanks.