How can I solve this problem with master theorem. Giving asymptotic upper and lower bounds
If
$T(n)=4T(n/3)+ n log(n)$
a=4 b=3 k=1
for the formula $aT(n/b)+n^k log^b(n)$
if $a>b^k$ then $T(n)=\theta(n^{log_b^a})$ which is
then does this mean the upper and lower bound is
$=\theta(n^{log_3^{4}})$
Would this be correct I am not good at these types of problem they are.. too abstract.