Prove: $n\log(n^2) + (\log n)^2 = O(n\log(n))$
I'm trying to use the Big Oh definition, what I reached so far is:
$f(n)$ is in $O(g(n))$ if there is $M > 0,∈\mathbb{R}$ such that whenever $m > x$ we have $|f(m)|<M|(m)|$
How do I, however, continue from here?
Hint: Use that $\log n < n$ and $\log (n^2)=2\log n$.