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