-1

I am trying to solve the following limit without using L'Hôpital's rule. I know the answer is -8, but I can't seem to figure out another way to solve it.

$$ \lim_{x\to1} \frac{x^2 -1}{2-\sqrt{x+3}} $$

Thanks in advance.

HollowMan
  • 53
  • 6

4 Answers4

4

multiply numerator and denominator by $$2+\sqrt{x+3}$$

  • 1
    @SimplyBeautifulArt I down voted - momentarily - just to try to fight the snowball effect that comes when people start up voting. I did it for two reasons: 1) this user has nearly 30K rep., he has no business answering this kind of questions without giving greater insight. Leave it for the low rep. users. 2) Pretty he didn't even make sure his idea works – Git Gud Mar 18 '17 at 15:42
  • 2
    @GitGud. Not providing complete solutions is celebrated, expecially when the asker hasn't any effort whatsoever. Secondly, to you really have any reason to think this substitution won't work?! I credit Dr.Sonnhard, and lab for not spoon-feeding this "do-my-homework for me" asker. – amWhy Mar 18 '17 at 15:45
  • So, @GigGud, I suppose that it's only Zain who answered according to your standard, by using Dr. Sonnhard's Hint, and doing simple calculations to spoon-feed the asker? Some of us like to have the participation of the asker! – amWhy Mar 18 '17 at 15:47
  • @amWhy You're arguing against a point I didn't make. I have no problem with hints. I had no reason to think this idea didn't work, but one should always check it actually works instead of rushing to answer. And I down voted Zain temporarily too. – Git Gud Mar 18 '17 at 15:54
  • @GitGud Well, I can't argue against how you vote. By the way, still didn't figure out those multivariable limits XD – Simply Beautiful Art Mar 18 '17 at 15:57
  • @GitGud Given this question, it shouldn't have taken any answerer any more than two minutes to check out/confirm the suggested substitution. You said I was arguing against a point you didn't make. Well you were arguing based on an assumption that the answerer here didn't check his substitution and assumed, instead, that he rushed to answer. The two actions aren't as diametrically opposed as you suggest. One can see the validity of a suggested substitution , and answer quickly. – amWhy Mar 18 '17 at 16:25
4

First let $x=u+1$.

$$L=\lim_{u\to0}\frac{(u+1)^2-1}{2-\sqrt{u+4}}=\lim_{u\to0}\frac{u(u+2)}{2-\sqrt{4+u}}$$

By binomial expansion, we have

$$\sqrt{4+u}=2+\frac14u-\frac1{64}u^2+\mathcal O(u^3)$$

Thus, we have

$$L=\lim_{u\to0}\frac{u(u+2)}{2-\sqrt{4+u}}=\lim_{u\to0}\frac{u(u+2)}{-\frac14u+\frac1{64}u^2+\mathcal O(u^3)}=\lim_{u\to0}\frac{u+2}{-\frac14+\frac1{64}u+\mathcal O(u^2)}=\frac2{-\frac14}=-8$$

3

HINT:

Set $2-\sqrt{x+3}=u \implies x=(2-u)^2-3,u\to0$

alternatively, $\sqrt{x+3}=v$ $ x=v^2-3$ and $v\to?$

3

We have $$\frac{x^2 - 1}{2 -\sqrt{x+3}} = \frac{(x^2 - 1)(2 + \sqrt{x+3})}{(2 - \sqrt{x+3})(2+\sqrt{x+3})} = \frac{(x-1)(x+1)(2+\sqrt{x+3})}{1-x}$$

So $$\lim_{x\to 1} \frac{x^2 -1 }{2-\sqrt{x+3}} = -\lim_{x\to 1} (x+1)(2+\sqrt{x+3}) = -8$$

Zain Patel
  • 16,802