Let $f(n)=3n^3$ and $g(n) = n^3$ then $f = Ω(g)$ Answer: Let $n_0 = 0$ and $c = 1$
So I know how to find $c$ and $n_0$ for big-oh, like this:
$3n^3 \leq cn^3$ [divide to be left with c]
$= c = 3$ and then $n_0 = 0$
I am not sure how to relate this to finding values for big-omega.