I want to prove that $f(n) \neq O(g(n))$ when $f(n) = n$, $g(n) =1$ precisely.
I can prove correct big-Oh expression such as $n = O(n)$, $\lg(n) = O(n)$ etc. but I can't prove incorrect big-Oh expression like above.
How can i prove such thing?
p.s. I don't want to use small-Oh notation for this proof.
$f(n) = O(g(n)), n \to \infty \iff \exists M > 0, n_0 \in \mathbb N : |f(n)| < M|g(n)|, \forall n > n_0$
If $n = O(1)$, then $\exists M > 0, n_0 \in \mathbb N : |n| < M, \forall n > n_0$, but that's a contradiction, as sequence $f(n) = n$ can't be limited by any finite value, so $\forall M > 0, \forall n_0 \in \mathbb N, \exists n^* : |n^*| \geq M$.