Does $n+n^4$ grow faster than $n^2+n^3$? If so, why?
Asked
Active
Viewed 69 times
3 Answers
1
- Polynomials of higher degree grow faster than polynomials of lower degree.
- The polynomial $n + n^4$ is of degree 4.
- The polynomial $n^2 + n^3$ is of degree 3.
- Therefore, the $n^4$ polynomial grows faster than the other polynomial.

Yuval Filmus
- 276,994
- 27
- 311
- 503

C8H10N4O2
- 746
- 5
- 11
0
Let me add way with simple inequalities: $$n^2+n^3 \leqslant n^4 +n^4=2n^4 \leqslant 2(n^4+n) $$ Now taking constant $C=2$ we have $n^2+n^3 \in O(n^4+n)= O(n^4)$.

zkutch
- 2,364
- 1
- 7
- 14