I am working with algorithmic complexity and I came up with a basic math question regarding the behavior of $\log(x)^n$ when $x \rightarrow +\infty$ with respect to x.
I would like to prove that if $\log(x) > 1$, then for any $n$ there is always a $\hat{x}$ such that $\log(x)^n < x$ when $x > \hat{x}$.
From an algorithmic complexity point of view it means that a $\mathcal{O}(\log(x)^n)$ algorithm is asymptotically better than a $\mathcal{O}(x)$ for any $n$.
You may try to apply the L'Hopital rule $n$ times: $$ \lim_{x \rightarrow \infty} \frac{(\ln x)^n}{x} = \lim_{x \rightarrow \infty} \frac{n(\ln x)^{n-1}}{x}=...= \lim_{x \rightarrow \infty} \frac{n!}{x} =0 $$