When we have a question like so:
What is the smallest integer $n$, such that $f(x) = x^{5.7}(\log x)^{1.2}$ is $O(x^n)$?
Would we go about the question as so: round up $x^{5.7}$ to become $x^6$. Since $\log x < x$, we can treat the $\log x$ as $x$, and $\rightarrow x^6x = x^7$, so the smallest integer $n: 7$
Is this correct?
That $\log x < x$ is insufficient—after all, we also have $x/2 < x$, but $x/2$ is, by construction, $\Theta(x)$. You need the fact that $\log x = o(x)$.