Jul 30, 2024
log(n bar log n) and log(2^10).
log(n) * log(n) and 10 * log(2) upon applying logarithmic rules.log n is smaller compared to log(log n).log(n * log_2(n)) and log(2).log(n) * log(log(n)) and 1.log(n) * log(log(n)) is greater as n approaches infinity.O(n log n) and equal in growth rates.*2^n and n * log(n) reduced to n and log(n).2^n is greater asymptotically than n * log(n).G1(n) = n^3 for n < 10,000 and n^2 beyond 10,000 with G2(n) = n^2 for all n
G1 greater than G2.G2 becomes greater.G2 is greater than G1.n + k whole power m
n^m.2^n + 1 = O(2^n) since coefficient 1 is ignorable.log(n * log(n)) and log(n) reducing to log(n) * log(log(n)) and 1 indicating greater n terms.