Is it okay to "ignore" small numbers in limits where $x$ approaches infinity?

Since the question is very broad (it doesn't even mention if the cases you want to consider are always fractions, or if the "small numbers" are constants etc), it might be useful to give a word of warning: try always to do what, for example, @Ennar or @user236182 did in their answer. The "small compared to" logic can fail.

For instance, one might argue that as $x$ goes to $+\infty$, $\sqrt{x^2+x}-x \sim \sqrt{x^2} -x=x-x \to 0$, since $x^2+x \sim x^2$, due to the fact that $x^2$ is the leading term. However, the limit $$\lim_{x \to \infty} \sqrt{x^2+x}-x$$ is not $0$, and may be a good exercise to figure out what it is.


As mentioned in the comments, the correct way to make such intuitive arguments rigorous is via asymptotic analysis using Landau notation such as done here and here: $ \def\lfrac#1#2{{\large\frac{#1}{#2}}} \def\wi{\subseteq} $

As $x \to \infty$:

  $\lfrac{(2x+3)^3·(3x-2)^2}{x^5+5} = \lfrac{(2+\lfrac3x)^3·(3-\lfrac2x)^2}{1+\lfrac5{x^5}} \in \lfrac{(2+o(1))^3·(3+o(1))^2}{1+o(1)}$

  $\ \wi (2+o(1))^3·(3+o(1))^2·(1+o(1)) \wi (2^3+o(1))·(3^2+o(1))·(1+o(1))$

  $\ = 2^3·3^2·1+o(1) \to 72$.


Note that it is absolutely incorrect to always eliminate small terms in each expression. So it is excellent that you ask your question about when it is valid. Consider the question of finding $\lim_{x \to 0} \lfrac{\exp(x)-1-\sin(x)}{x^2}$ if it exists. If you simply 'eliminate' small terms, then you would get $\lfrac{\exp(0)-1-\sin(0)}{x^2} = 0$, which is not the desired limit. Notice how the proper asymptotic analysis will never fail:

As $x \to 0$:

  $\lfrac{\exp(x)-1-\sin(x)}{x^2} \in \lfrac{\exp(o(1))-1-\sin(o(1))}{x^2} \wi \lfrac{(1+o(1))-1-o(1)}{x^2} \wi \lfrac{o(1)}{x^2}$.

  [Note that in the last step above you cannot cancel the "$o(1)$" because it is a class of values.]

  [So you are stuck because the final "$\lfrac{o(1)}{x^2}$" is too loose a bound even though it is not wrong.]

  [This tells us that we need more precision in the asymptotic expansion, so we try again.]

  $\lfrac{\exp(x)-1-\sin(x)}{x^2} \in \lfrac{(1+x+o(x))-1-(x+o(x))}{x^2} \wi \lfrac{o(x)}{x^2}$.

  [Again we get stuck, even though "$\lfrac{o(x)}{x^2}$" is now a tighter bound. So refine more!]

  $\lfrac{\exp(x)-1-\sin(x)}{x^2} \in \lfrac{(1+x+\lfrac12x^2+o(x^2))-1-(x+o(x^2))}{x^2} \wi \lfrac{\lfrac12x^2+o(x^2)}{x^2} = \lfrac12+o(1) \to \lfrac12$.

  [There we go; we have found the limit, but we can refine further to get even more information!]

  $\lfrac{\exp(x)-1-\sin(x)}{x^2} \in \lfrac{(1+x+\lfrac12x^2+\lfrac16x^3+O(x^4))-1-(x-\lfrac16x^3+O(x^5))}{x^2} \wi \lfrac{\lfrac12x^2+\lfrac13x^3+O(x^4)}{x^2}$

  $\ = \lfrac12+\lfrac13x+O(x^2)$.


It is always good to specify the steps which allow you to "forget" those numbers, at least roughly: $$\lim_{x \rightarrow \infty} \frac{(2x+3)^3(3x-2)^2}{x^5+5} = \lim_{x \rightarrow \infty}\frac{72x^5+(\text{terms of degree} < 5)}{x^5\Big(1+\frac{5}{x^5} \Big)} = \lim_{x \rightarrow \infty} \frac{72+\frac{(\text{terms of degree }<5)}{x^5}}{1+\frac{5}{x^5}}$$ and now $\frac{\text{terms of degree } < 5}{x^5} \rightarrow 0$ as $x \rightarrow \infty$, as well as $\frac{5}{x^5}$, so you get $72$.