This is a problem from a university exam:
True or false: $n^{1.1} \in O(n(\log n)^2)$.
The solution says False, but I'm unable to prove it. I tried using the limit test for Big-O:
$\lim_{n \to \infty} \frac{T(n)}{f(n)} = \lim_{n \to \infty} \frac{n^{1.1}}{n(\log n)^2} = \lim_{n \to \infty} \frac{n^{0.1}}{(\log n)^2}$
EDIT: Wolfram Alpha says that this limit is $\infty$, which is not a constant as the limit test requires. But I still don't know how to compute this limit by hand.