0

For each pair of the following functions, compare their asymptotic behaviour using the order notation. f(n) = e^n and g(n)= 3n^2

user64494
  • 26,149
  • 4
  • 27
  • 56

1 Answers1

4

Mathematica 12.0 has got tools to this end:

AsymptoticLess[Exp[n], 3 n^2, n -> Infinity]
*False*
AsymptoticGreater[Exp[n], 3 n^2, n -> Infinity]
*True*
AsymptoticEqual[Exp[n], 3 n^2, n -> Infinity]
*False*

See the documentation for more info.

user64494
  • 26,149
  • 4
  • 27
  • 56