Final answer:
In increasing order of asymptotic growth, the functions are: 4 log n, 5n, N⁴, (n / 4)ⁿ/⁴, and 5ⁿ, start from the slowest to the fastest growth rates.
Step-by-step explanation:
To sort the given functions in increasing order of asymptotic growth (Big-O), we need to recognize the order each of these types of functions typically has. The order from lowest growth to highest growth is as follows:
- 4 log n: This function grows logarithmically, which is a very slow rate of growth relative to the others listed.
- 5n: Linear growth is faster than logarithmic, but slower compared to polynomial and exponential growths.
- N´: Polynomial growths are generally faster than both linear and logarithmic growths. Among polynomials, higher degrees grow faster.
- (n / 4)¹⁄₄: This is an example of an exponential growth, but with a smaller base compared to a pure exponential function. Although it grows fast, it's slightly slower than a full exponential function because the base is less than one.
- 5ⁿ: Exponential growths are the fastest among the functions listed here and within exponential functions, those with a larger base grow faster.
Therefore, in increasing order of asymptotic growth, the functions are: 4 log n, 5n, N´, (n / 4)¹⁄₄, and 5ⁿ.