-1

I tried to do the exercise below and I found the one-sided limits as 0, both left and right. But in the book the answer is -1 and 1.

Make the graph of the function. Determine if the function is continuous at $c$. Compute the lateral limits $f_-'(x_1)$ and $f_+'(x_1)$. $f(x)=|x-3|$; $x_1=3$.

Jonas Meyer
  • 53,602
Vinicius L. Beserra
  • 527
  • 1
  • 5
  • 14

1 Answers1

6

If the function is

$$f(x) = |x-3|$$

then you need to find $f'_-(3)$ and $f'_+(3)$.

You can go as follows

$$f'_+(3)= \lim_{x \to 3^+} \frac{f(x)-f(3)}{x-3}$$

$$f'_+(3)= \lim_{x \to 3^+} \frac{|x-3|-0}{x-3}$$

since $x$ ranges over values greater than $3$, $|x-3|=x-3$, so

$$f'_+(3)= \lim_{x \to 3^+} \frac{x-3}{x-3}=1$$

Try to do it for $f'_-$, and note that since $x$ ranges over values smaller than $3$, $|x-3|=-(x-3)$.

Pedro
  • 122,002