Take the following list of functions and arrange them inascending order of growt
ID: 3616410 • Letter: T
Question
Take the following list of functions and arrange them inascending order of growth rate. That is, if function g(n)immediately follows function f(n) in your list, then it should bethe case that f(n) is O(g(n)).
f1(n) = n2.5
f2(n) = sqrt(2n)
f3(n) = n + 10
f4(n) = 10n
f5(n) = 100 n
f6(n) = n 2 log n
Justify your ordering of the functions.