I'm not sure how to solve apply the master theorem in order to solve this recurrence:
$$ T(n) = 4T(n/3) +O(n\log n),\text{ where } T(1) = 1.$$
The master theorem I have been shown is normally used to solve recurrences of the slightly different form $$ T(n) = aT(n/b) +O(n^d),\text{ where }T(1) = 1.$$