Assume $f(n)=O(g(n))$ with $g(n)\geq2$ for all $n$
implies $f(n)+g(n)=O(g(n))$
the answer which teacher offer is false ,but I think it is true
this is my think
$f(n)=O(g(n))$ so $f(n)\leq c\cdot g(n)$ ,$f(n)+g(n)\leq (c+1)\cdot g(n)$
So $f(n)+g(n)=O(g(n))$
Am I wrong?