Question:medium

Consider the following three functions:
\[ f_1 = 10^n, f_2 = n^{\log n}, f_3 = n^{\sqrt{n}} \] Which one of the following options arranges the functions in the increasing order of asymptotic growth rate?

Show Hint

To compare fast-growing functions, convert them into exponential form and compare exponents.
Updated On: Jan 30, 2026
  • \( f_3, f_2, f_1 \)
  • \( f_2, f_1, f_3 \)
  • \( f_1, f_2, f_3 \)
  • \( f_2, f_3, f_1 \)
Show Solution

The Correct Option is D

Solution and Explanation

Step 1: Express the functions in exponential form.
To compare growth rates, rewrite each function using exponentials:

f2 = nlog n = e(log n)²
f3 = n√n = e√n · log n
f1 = 10n = en · log 10


Step 2: Compare the exponents.
As n → ∞, the growth rates of the exponents satisfy:

(log n)² ≪ √n · log n ≪ n

Hence, f2 grows slower than f3, and f3 grows slower than f1.


Step 3: Final ordering.
Arranging the functions in increasing order of growth:

f2 < f3 < f1

Was this answer helpful?
0