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.