If I have $f(n)=n^{2/3}$ and $g(n) = n^{1/2}$, then I believe their big $O$'s are $O(n^{2/3})$ and $O(n^{1/2})$.
This is where I'm a little confused. I need to find if $f=O(g)$, $f=\Omega(g)$ or $f=\Theta(g)$.
I know that $f$ dominates $g$, so they have different big $O$'s and so $f\neq O(g)$.
... and that's as far as I'm able to get.
I'm trying to grasp the concepts of big $\Theta$ and $\Omega$ but my book is kind of confusing. It says that $f=\Omega(g)$ means $g=O(f)$, which I thought meant that if $f$ and $g$ have the same big $O$ then $f=\Omega(g)$ and $g=\Omega(f)$, but now I'm not so sure. I think this contradicts what I've read about big $\Omega$ being a lower bound - the opposite of big $O$, so I'm not entirely certain and I was hoping someone could clarify.
And I understand that big $\Theta$ represents both $f=O(g)$ and $f=\Omega(g)$, which places it between the two and is a tight bound, but I'm not really sure how to find if a function is big $\Theta$ - probably because I'm struggling understanding big $\Omega$