Call f(x) = (√(1+x) - √(1-x))/|x|.
Claim:
The limit of f(x) as x approaches 0 exists
if and only if
both
lim f(x) as x approaches 0 from the left exists
And
lim f(x) as x approaches 0 from the right exists
And
these two limits are equal.
So consider the limit of the function as it approaches both sides of zero.
This way you can use the piece-wise definition of |x| to remove the absolute values.
Recall a piece-wise definition |x| = { x if x>0 , -x if x<0, and 0 if x = 0.
Then you can just use L’Hopital’s rule (B/c I believe direct evaluation leads to the indeterminate case of 0/0) to find the lim of f(x) as x approaches 0 from one side of zero. Then do the process again to find the lim f(x) as x approaches 0 from the other side of zero. If they both exist and equal each other, then that’s the limit. If not the limit doesn’t exist.
********************
Tom’s way works too. Isn’t it cool to see more than one path! I’ve always thought the art in math is in the path! Anyway let’s summarize the approaches.
DEFINITIONS USED
f(x) = (√(1+x) - √(1-x))/|x|
|x| = { x if x≥0,
-x if x<0.
THEOREMS UTILIZED
1) The limit of a function k(x) as x approaches some value a exists and is L, i.e.
limx→a k(x) = L,
if and only if
limx→a¯ k(x) = L,
and
limx→a^+ k(x) = L.
2) Given k(x) = s(x) / t(x) is differentiable on the interval of interest where
limx→a s(x) = 0,
and
limx→a t(x) = 0.
Then L’Hopital’s Rule states that limx→a k(x) = limx→a s’(x) / t’(x).
METHOD USING CLEVER MULTIPLICATION BY 1 (CONJUGATE)
limx→0 f(x) = limx→0 (√(1+x) - √(1-x))/|x| * (√(1+x) + √(1-x))/(√(1+x) + √(1-x))
= limx→0 ((1+x) - (1-x))/(|x|(√(1+x) + √(1-x)))
= limx→0 2x/(|x|(√(1+x) + √(1-x))).
Now consider limits approaching 0 from the left and right.
Left
limx→0¯ f(x) = limx→0¯ 2x/((-x)(√(1+x) + √(1-x))) Using definition of |x| for x<0.
= - limx→0¯ 2/(√(1+x) + √(1-x))
= - 2/(√(1) + √(1))
= - 2/2
= - 1.
Right
limx→0^+ f(x) = limx→0^+ 2x/((x)(√(1+x) + √(1-x))) Using definition of |x| for x>0.
= limx→0¯ 2/(√(1+x) + √(1-x))
= 2/(√(1) + √(1))
= 2/2
= 1.
Hence,
limx→0¯ f(x) = -1
and
limx→0^+ f(x) = 1.
Thus the limit of f(x) as x approaches 0 does not exist.
METHOD USING L’HÔPITAL’S RULE
For this method, let’s start by considering the limits as f(x) approaches 0 from the left and the right.
Left
limx→0¯ f(x) = limx→0¯ (√(1+x) - √(1-x))/(-x) Using the definition of |x| above for x<0
= - limx→0¯ (√(1+x) - √(1-x))/x.
Right
limx→0^+ f(x) = limx→0^+ (√(1+x) - √(1-x))/(x) Using the definition of |x| above for x>0
= limx→0^+ (√(1+x) - √(1-x))/x.
NOW DEFINE
j(x) = (√(1+x) - √(1-x))/x.
Then
Left
limx→0¯ f(x) = - limx→0¯ j(x)
and
Right
limx→0^+ f(x) = limx→0^+ j(x).
Next consider
limx→0 j(x) = limx→0 (√(1+x) - √(1-x))/x.
Moreover if we DEFINE
g(x) = (√(1+x) - √(1-x))
and
h(x) = x.
Notice that limx→0 g(x) = 0 = limx→0 h(x),
and
g’(x) = 1/(2√(1+x)) - 1/(2√(1-x))(-1)
= 1/(2√(1+x)) + 1/(2√(1-x)),
h‘(x) = 1.
So by L’Hopital’s Rule,
limx→0 j(x) = limx→0 g’(x) / h’(x)
= limx→0 1/(2√(1+x)) + 1/(2√(1-x))
= 1/(2√(1)) + 1/(2√(1))
= 1.
Therefore,
Left
limx→0¯ f(x) = - limx→0¯ j(x) = -1
and
Right
limx→0^+ f(x) = limx→0^+ j(x) = 1.
Hence it must be that limx→0 f(x) does not exist.
Alex E.
Tom’s path may be preferred if you haven’t studied L’Hopital’s Rule yet. I still like the idea of using a piece-wise definition for |x|, but if everyone does everything the same, then where’s the fun in math? Anyway I updated my response below * line. I added my interpretation of Tom’s solution along with a more detailed path for the solution I suggested.08/30/20