Solve the recurrence relation $T(n) = T(n/3) + T(n/2) + n^3$.
Could someone help me with this question here? I have tried the problem using recurrence tree but it starts getting complicated pretty quick. How would one approach to solve such problems?
You are presumably just looking for an asymptotic estimate?
It's usually worth guessing that the solution is asymptotically the same as the inhomogeneous term; in this case
$$ T(n) = \Theta(n^3) $$
and then do the exercise "prove/disprove that this is a solution to the recurrence".
Often this works. When it doesn't, your work often gives you useful information about the problem — e.g. suggesting other guesses you can make.