Is this statement true? $$f(n) \notin o(g(n))~~~\wedge~~~f(n) \notin \omega(g(n))~~\implies f(n)\in\Theta(g(n))$$
I'm thinking that because $f(n)$ is never greater than or less than $cg(n)$, then it must be growing at the same rate? However I don't know how to derive this solution from first principles.
In general, not every two functions are comparable asymptotically. Consider $f(x) = e^{x\cos(x)}$ and $g(x) = x$.