Given this recurrence relation, T(n) = 2T(n/2)+T(n/4)+n^2, would I be able to utilize the Master Method to solve for the time complexity in the tightest bound?
I utilized the recursion tree method and got T(n) = Theta(n^2) as my answer, but I want to see if I can use the Master Method since that would be faster.