1

I should calculate the Limit $\lim \limits_ {x \to 2} \left(\frac{x^2+2x-8}{x^2-2x}\right)$, although I noticed, that $x\neq 2$ must apply. Is the limit undefined? Otherwise, with which steps should I go on to calculate the limit?

Key Flex
  • 9,475
  • 7
  • 17
  • 34
Doesbaddel
  • 1,197
  • 1
    Even there is no "cancellation", the limit $\lim_{x\to x_0}f(x)$ has nothing to do with the value of the function $f$ at $x=x_0$. For instance $f(x)=\frac{\sin x}{x}$ is not defined at $x=0$ and there is no "cancellation", but we have $\lim_{x\to 0}\frac{\sin x}{x}=1$. –  Nov 10 '18 at 22:57
  • @user587192 In some sense the cancellation there is also there if we consider that $\frac{\sin x}x=\frac{x+o(x)}{x}=1+o(1)\to 1$. The key point, as younoticed, is that when we take the limit we are considering $x\neq x_0$ (and more in general $x\in [(x_0-\delta, x_0+\delta)\setminus{x_0}]\cap D$). – user Nov 10 '18 at 23:03

2 Answers2

5

Given $$\lim_{x\rightarrow2}\dfrac{x^2+2x-8}{x^2-2x}=\lim_{x\rightarrow2}\dfrac{\color{red}{(x-2)}(x+4)}{x\color{red}{(x-2)}}=\lim_{x\rightarrow2}\dfrac{x+4}{x}=\lim_{x\rightarrow2}1+\dfrac4x = 3$$

OR

You could also use L'Hopital's rule

$$\lim_{x\rightarrow2}\dfrac{x^2+2x-8}{x^2-2x}=\lim_{x\rightarrow2}\dfrac{2x+2}{2x-2}=\dfrac{2(2)+2}{2(2)-2}=\dfrac{6}{2}=3$$

Key Flex
  • 9,475
  • 7
  • 17
  • 34
1

We have that

$$\frac{x^2+2x-8}{x^2-2x}=\frac{\color{red}{(x-2)}(x+4)}{x\color{red}{(x-2)}}=\frac{x+4}{x}$$

and then take the limit.

To clarify why we are allowed to cancel out the $(x-2)$ factor refer to the related

user
  • 154,566