-2

I know we can eliminate the lower function in our Big-O notation if it is in addition.

Something like O(4^n + n^2) will be simplified to O(4^n)

However, if it is something like O(4^n * n^2) or O(n * 3^n), how do they get simplified, now that the functions are in multiplication?

Please do help me understand

iamanigeeit
  • 784
  • 1
  • 6
  • 11

1 Answers1

1

You don't simplify the products.

Simplification in the sums occurs because

f(x) + g(x) = f(x) (1 + g(x) / f(x))

and for large x, g / f becomes insignificant in front of 1.

For the products f(x).g(x), there is no similar rule.