I have trouble understanding when it's ok or not to substitute a function with another asymptotic one.
I know that, when $\lim _{x\to x_0}\left(\frac{f\left(x\right)}{g\left(x\right)}\right)=1$ , if I'm in a limit in which $x\to x_0$ , then I can "replace" f(x) with g(x) .
But WHEN can I replace it?
An example that is making me confused:
Consider this limit:
$\lim _{x\to \:0}\left(\frac{sin\left(x\right)-x+2x^5}{3x^3}\right)$
The result should be $\ell =-\frac{1}{18}$ (Wolfram agrees)
But I'm having trouble with this.
First error I noticed was trying to apply the notable limit $\lim _{x\to \:0}\left(\frac{sin\left(x\right)}{x}\right)=1$.
I grouped by x, and I applied the substitution, and I ended with a wrong result ($\ell =0$).
$\lim \:_{x\to \:\:0}\left(\frac{sin\left(x\right)-x+2x^5}{3x^3}\right)=\lim \:_{x\to \:\:0}\left(\frac{x\left(\frac{sin\left(x\right)}{x}-1+\frac{2x^5}{x}\right)}{3x^3}\right)=\lim \:\:_{x\to \:\:\:0}\left(\frac{x\left(\left[1\right]-1+\frac{2x^5}{x}\right)}{3x^3}\right)=...=0$.
Ok, this is wrong.
But why THIS other approach I tried is wrong?
$\lim \:_{x\to \:\:0}\left(\frac{sin\left(x\right)-x+2x^5}{3x^3}\right)$ ⇒ For x→0, sin(x)∼x ⇒ $\lim \:_{x\to \:\:0}\left(\frac{\left[x\right]-x+2x^5}{3x^3}\right)=...=0$
WHEN is it not appropriate to substitute a function with an asymptot? Help.