I was looking at the definition of Big Omega: \begin{align} \Omega(g(n)) &= \{ f(n): \text{ there exist positive constants }c \text{ and }n_0 \\ &\ \ \ \ \ \ \ \ \text{ such that }0 \le cg(n) \le f(n) \text{ for all }n \ge n_0 \} \end{align}
I have a function $\frac{n^2+n}2$ to prove that it belongs to $\Omega(n^3)$.
I started like this
$cn^3 \le \frac{n^2+n}2$ but I am not quite sure how do I get $c$, if I pick $n=1$ I get $c\le 1$ but what is the better way of proving this?