I need to prove that $T(n) = 4T(n/2) + n^2lgn = \mathcal{O}(n^2lg^2n)$ by using the substitution method. Unfortunately, I'm not able to identify the error in my train of thought.
For the problem at hand, I want to prove that $T(n) = \mathcal{O}(n^2lg^2n)$, equivalently that there exists a $n_0$ and $c > 0$ such that for every $n \geq n_0$ it holds that $T(n) \leq cn^2lg^2n$. So it follows that: \begin{align} T(n) &= 4T(n/2) + n^2lgn \\ &\leq 4c\left(\frac{n}{2}\right)^2lg^2\left( \frac{n}{2} \right) + n^2lgn \\ &= cn^2lg^2n - cn^2 + n^2lgn \\ &\leq cn^2lg^2n \end{align}
The last inequation holds when $$ - cn^2 + n^2lgn \leq 0 $$ or, equivalently $$ c \geq lgn $$
which cannot be true since $\lim_{n \rightarrow \infty} lgn = \infty$.
I would be very thankful to anyone who can point to where my error comes from, or at least point me in the right direction.
Thank you in advance! :)