I m trying to find the time complexity of the following equation:
$$ T(n) = 2 T(n/2) + n^2 $$
I understand that you need to find patterns - so i got this:
$$ 2^2 T(n/2^2) + n^2/2 + n^2 $$ $$ 2^3 T(n/2^3) + n^2/2^2 + n^2/2 + n^2 $$
I don't understand what comes after this- Does this involve using summation of AP/GP?
Any help will be much appreciated.