I have stumbled upon the following question:
If f(x),g(x) > 1
for every x
, prove/disprove the following:
f(x)+g(x)= O(f(x)*g(x))
I dont know how to start the proof, this is very basic for my level, please help.
See https://en.wikipedia.org/wiki/Big_O_notation.
You basically need to show that there is a positive constant M
and a number x0
such that:
abs(f(x)+g(x)) <= M*abs(f(x)*g(x))
for all x >= x0
.
Which is trivial. I will omit this part, please do it yourself.