I'm trying to figure out big $O$ notation (as $x\to\infty$ for $f(x) =\ln x$, and little $o$ notation (as $x \to 0$) for $f(x) =\ln x$.
Similarly, I am trying to find out little o notation (as $x\to 0$ and as $x\to\infty$) for $f(x) = x^2 + x$.
What I know (for $\ln x$):
- I know we have that $\ln x < x$ for all $x > 0$.
- I tried to look at the Taylor Series expansion for $x > 0$ (since I know we don't have one centered at $0$), but had no luck.
What I know (for $x^2 + x$):
- I know that $x = o(x^2)$ for all $x$
- I also know that $x^2 \in o(x^3)$
I struggle with asymptotic notation (especially little $o$); any tips to help guide me in the right direction would be much appreciated.