Please order the function belows by growth rate from fastest to slowest:

  • n^10
  • 2^n
  • nlog(n)
  • 10^6

And my answer is:

  • 2^n
  • n^10
  • nlog(n)
  • 10^6

Is my answer correct?

link|improve this question
2  
Almost. _______ – KennyTM Apr 19 '10 at 17:25
See what order they come out to be when n = 1000. – Jason Hall Apr 19 '10 at 17:28
Erhm... n^10 then 2^n?? – rachel7660 Apr 20 '10 at 2:25
1  
@tanascius: ordered by fastest growth to slowest, not fastest running time. – FrustratedWithFormsDesigner Apr 20 '10 at 3:46
feedback

1 Answer

up vote 3 down vote accepted

That seems about right. As way of education, consider what happens when you feed in different n values (using rough powers of 10 rather than exact values):

 n      2^n       n^10    n log n   10^6
 ----   -------   -----   -------   ----
    1   10^0.3    10^0    10^0      10^6
   10   10^3      10^10   10^1      10^6
  100   10^30     10^20   10^2      10^6
 1000   10^301    10^30   10^3      10^6
10000   10^3010   10^40   10^4      10^6

So, in terms of how fast they grow, you're list is correct.

  • 106 doesn't grow at all.
  • n log n increases its power-of-ten by one for each step.
  • n10 increases its power-of-ten by 10 for each step.
  • 2n multiplies its power-of-ten by ten each step.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.