I have come across some of the difficulties during doing this question. The question is: sort the following functions by order of growth from slowest to fastest:
7n^3 − 10n, 4n^2, n, n^8621909, 3n, 2^(log log n), n log n, 6n log n, n!, 1.1^n
And my answer to the question is
- n,3n
- nlogn, 6nlogn
- 4n^2(which equals to n^2)
- 7n^3 – 10n(which equals to n^3)
- n^ 8621909
- 2^loglogn
- 1.1^n(exponent 2^0.1376n)
- n!
Just wondering: can I assume that 2^(loglogn)
has the same growth as 2^n
? Should I take 1.1^n
as a constant?