I am confused here which case of master theorem finding tight bound for this recurrence relation:
T(n) = 27T(n/3) + Q(n3log n)
Here is my solution:
f(n) = n3log n
a=27 b = 3 so

So we can see here that f(n) > n3
So this: 
Case 3 will apply: correct me if I am wrong here.
Note: But it's answer is coming n3log2n which is coming by case 2 of Master Theorem. Which one should I apply?
log^k nfactor. Thus you proceed to compute a & b for p. In other 2 cases f(n) has nolog nfactor - another.anon.coward