Arrange the following expressions by growth rate from slowest to fastest.
4n2 ; log3n ; n! ; 3n ; 20n ; 2; log2n; n2/3 ; n2 + 3n + 7 ; 4n3/2 ; log2n * log2n ; nlog2n + 200n
Format your answer by writing one or more functions on each line
of your answer, with slower growing
functions appearing first. Functions that grow at the same
asymptotic rate as one another should be placed
together on the same line of your answer.
Thank you!
Growth rate from slowest to fastest
n! n=10 ,10!=10*9*8*7*6*5*4*3*2*1=3628800
3n n=10 ,3^10=3*3*3*3*3*3*3*3*3*3 =59049
4n2 , n2 + 3n + 7 n=100 ,4*100^2=40000 n=100 , 100^2+ 3*100 +7=10307
nlog2n + 200n n=100 ,100*log(100) + 200*100=664.38+20000=20664.38
4n3/2 n=100 , 4*(100)^3/2=4*10^3=4000
20n n=1000 , 20*1000=20000
n2/3 n=1000 , (1000)^2/3= 10^2=100
log2n * log2n n=1000 , log(1000)*log(1000)=9.965*9.965= 99.301225
log2n n=1000 , log(1000)=9.965
log3n n=1000 , log(1000)= 6.28
2
Get Answers For Free
Most questions answered within 1 hours.