I'm learning it in the context of Running time complexity.
to determine whether $f(x) = O(g(x))$, you can check whether the folloing limit:$$\lim_{x \to \infty} {f(x) \over g(x)} < \infty$$
if so, then you know that $f(x) = O(g(x))$.
Is there a similar way to determine whether $f(x) = \Theta(g(x))$?
Thanks in advance.