I want to prove the following
$$\Omega(f(n)) \subset \Omega(g(n)), iff : g(n)\in \mathcal{O}(f(n)) \wedge f(n) \not\in \mathcal{O}(g(n))$$
What I did so far is:
$$t(n)\in\Omega(f(n)) \rightarrow \exists c_{1} \exists n_{0} \forall n>n_{0} , t(n)\geq c_{1}\cdot f(n)$$
Now I need to use the given details:
$$g(n)\in \mathcal{O}(f(n)) \rightarrow \exists c_{2} \exists n_{1} \forall n>n_{1} , g(n)\leq c_{2}\cdot f(n)$$
$$\frac{1}{c1}\cdot t(n) \geq f(n)$$
$$\frac{1}{c2}\cdot g(n) \leq f(n)$$
$$\rightarrow \frac{1}{c2}\cdot g(n) \leq f(n) \leq \frac{1}{c1}\cdot t(n) $$
$$\rightarrow t(n) \in \Omega(g(n))$$
I dont know how to continue and I dont know if its right
any suggestions?
thanks.