Given any two functions $f(n)$ and $g(n)$ is one of these three statements always true:
$f(n) \in o(g(n))$
$f(n) \in \omega(g(n))$
$f(n) \in \Theta(g(n))$
Logically, this makes sense to me. For a homework assignment I'm given various functions $f(n)$ and $g(n)$ and asked to determine whether they are $o$, $\mathcal{O}$, $\omega$, $\Omega$, or $\Theta$ of eachother.
In the case where a function is $\mathcal{O}$ but not $o$, it must be $\Theta$. And in the case where a function is $\Omega$ but not $\omega$ it must also be $\Theta$.
Am I missing anything logically?