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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That seems about right. As way of education, consider what happens when you feed in different
nvalues (using rough powers of 10 rather than exact values):So, in terms of how fast they grow, you’re list is correct.
106doesn’t grow at all.n log nincreases its power-of-ten by one for each step.n10increases its power-of-ten by 10 for each step.2nmultiplies its power-of-ten by ten each step.