1,265 views
1 1 vote
Give Big-O estimate:

${f(x)=n^{2n} + n^{n^2}}$

The answer is given $O(n^{2n})$

But, isn't $n^{n^2} > n^{2n}$ for n>2?

If yes, then how is it $O(n^{2n})$?

1 Answer

Position:
Show:

Related questions

1 1 vote
2 answers 2 answers
597
597 views
vishal_prasad_singh asked Nov 5, 2025
597 views
O(n)∗Ω(n)+Θ(n) = ?1.O(n)2.Ω(n)3.Θ(n)4. none 
2 2 votes
1 1 answer
627
627 views
Amad_Os asked Oct 24, 2025
627 views
What is the complexity of the following using Big O:
1 1 vote
1 1 answer
390
390 views
Shubham Sharma 2 asked Sep 9, 2025
390 views
Arrange the following recurrence relations in increasing order of their time capacity.$\mathrm{T}(\mathrm{n})=\mathrm{T}(\mathrm{n} / 2)+1$$\mathrm{T}(\mathrm{n})=2 \math...