The task
I am trying to find out the asymptotic tight bound for a function, f(n) = 1/n^5. It will be great if someone can provide suggestions or solutions on how to find the asymptotic tight bound for f.
What I have come up with
We can safely assume that 0 < f(n) <= 1. Therefore we can say the upper bound complexity of f is O(1).
Also we can say the lower bound complexity of f is Omega(1/n^5). So, the asymptotic tight bound of this function is Theta(1/n^5).