Find Theta Class of T(n) = T(3n/4) + T(n/6) +5n

40 Views Asked by At

I'm not quite sure I can apply the Master Theorem to T(n) = T(3n/4) + T(n/6) + 5n. It is not in the normal form of T(n) = aT(n/b) + f(n). Is it possible to apply the MT to it? If not, can the recurrence be resolved without using Akra Bazzi?