Suppose the running time of an algorithm is given by the following recurrence relation:
T(0) = 1
T(n) = 2 T (n/2) + n^2 What is the Big Oh complexity of T(n)? Give as tight a bound as possible and show your work.