0.0001*2^n + 10 * n^2 + 10000 * log(n) + 10000000
do we look at the highest exponent power?
The big O of this is O(n^2)? Am i right?
0.0001*2^n + 10 * n^2 + 10000 * log(n) + 10000000
do we look at the highest exponent power?
The big O of this is O(n^2)? Am i right?
The big O of this is O(n^2)? Am i right?
No, 2^n
will be dominating over everything else, despite its tiny coefficient.