I'd like to ask a question about what can I possibly do wrong with determining asymptotes of the function
$$x \mapsto x-2\sqrt{x^2+1} $$
OK, so when it comes to vertical asymptotes function, we can't have any because domain of the function is the set of all real numbers.
Now, I'm trying to determine horizontal asymptote.
$$ lim_{x\to \pm \infty} \frac{(x-2\sqrt{x^2+1})(x-2\sqrt{x^2+1})} {(x-2\sqrt{x^2+1})} = \frac {-3x^2-4}{3x+2} $$
It's an indeterminate form, so I'm using l'Hospital rule. That makes it $$ \frac{-6x}{3} = \infty $$
So, horizontal asymptote doesn't exist either.
Now, I'm determining oblique asymptotes
$$ lim_{x\to \pm \infty} \frac {\frac{-3x^2-4}{3x+2}}{x} = \frac {-3x^2-4}{3x^2+2x} = -1 $$ $$ a=-1 $$ $$ lim_{x\to \pm \infty} \frac{-3x^2-4}{3x+2} + x = \frac{-3x^2-4+x(3x+2)}{3x+2}=\frac{-3x^2-4+3x^2+2x}{3x+2}=\frac{-4+2x}{3x+2}=\frac{2}{3} $$ $$ b= \frac{2}{3} $$
so, in my opinion oblique asymptote should be: $$ y=-x+\frac{2}{3} $$
But Wolfram Alpha gives different answer : enter link description here
What mistake am I doing?