$$ T(n) =4T(\frac{n}{2})+ n^\frac{5}{2} $$
I'm having trouble solving this recurrence relation above to identify the time complexity below by using substitution/plugging. I'm able to do it using master's theorem and I get $$ T(n) = \theta(n^\frac{5}{2})$$ but I'd like to be able to understand how to do it using substitution (is one easier /more intuitive to use? I tried using substitution where I continuously plugged in n/2 for n but I wasn't able to get a generalized case form.
First, we can expand T(n) infinitely.
$T(n)=n^{\frac{5}{2}}+4(\frac{n}{2})^{\frac{5}{2}}+16(\frac{n}{4})^{\frac{5}{2}}+...$ Change this into a summation.
$T(n)=\sum_{i=0}^{\infty}4^i(\frac{n}{2^i})^{\frac{5}{2}}$ Distribute exponent.
$T(n)=\sum_{i=0}^{\infty}2^{2i}\frac{n^{\frac{5}{2}}}{2^{\frac{5i}{2}}}$ Simplify.
$T(n)=\sum_{i=0}^{\infty}(\frac{1}{\sqrt{2}})^i n^{\frac{5}{2}}$ Expand.
Expanding the summation gives us:
$n^{\frac{5}{2}}(1+\frac{1}{\sqrt{2}}+\frac{1}{2}+\frac{1}{2\sqrt{2}}+...)$
Which can be simplified to $(2+\sqrt{2})n^{\frac{5}{2}}$
I'm assuming $\theta$ is $2+\sqrt{2}$?