I would like to prove that $O(n^3)$ is bigger than $O((\log n)^4)$.
I thought that I can divide both powers with 4 so it is $$O\left(n^{\frac{3}{4}}\right)$$ vs $$O(\log n)$$ but then I don't know how I can prove that $$O(n^k)$$ is bigger than $O(\log n)$ for $k > 0$.
$$\lim_{n \to \infty} \frac{n^3}{(\ln n)^4} = \infty$$
Or alternatively the limit of the reciprocal is zero?
– Simon S Apr 26 '15 at 13:22