I am learning algorithmic analysis and I want to know how to compare functions...I am trying to apply the definitions of Big Oh, Omega and theta yet unable to find the correct answer.
For example, how to know if $f(n) = 100n^{5.001} + n^5\log(n)^{10}$ is
(a) $O(n^{10})?$
(b) $\Theta(n^5\log(n))?$
(c) $\Theta(n^{5.001}\log(n))?$
(d) $\Omega(n^{5.001} + n^5\log(n))?$
(e) $\Omega(\sqrt n)?$
(f) $o(n^{5.1})?$