I have the following two functions
- $f(n) = n\sqrt n + n \log n$
- $\log_{100} n$
And I need to classify them into the followings:
- $O(n)$, and/or
- $O(n^2)$, and/or
- $O(n^3)$, and/or
- $O(n^{1.5})$, and/or
- $\omega(n)$, and/or
- $o(n\log n)$ (small o)
- $\theta(n^{1.5})$,
Regarding the $\theta(n^{1.5})$, I am grasping it's idea newly, where do these functions set in. Also, does the function $f(n) =n^{0.9999}$ belong to $\theta(n^{1.5})$.
I would appreciate your feedback, as from your answers I am building up the knowledge for these.