I want to solve the recurrence for Strassen's method (for multiplying square matrices) with domain transformation and get a closed form. The equation is given below:
$T(n)=b$, at $n=2$
$T(n)=7T(n/2)+an^2$, at $n>2$
I know that since I have to cancel out n/2, I should set $n=2^k$. I'll call that $G(k)$.
$G(k)=7G(k-1)+a(2^k)^2$
Now I'm not sure what to do. The $(2^k)^2$ term is quite confusing. It prevents telescoping or characteristic equations as far as I can tell. It doesn't seem to fit any of the simple forms for generating functions.