Calculating derivative by definition vs not by definition

375 Views Asked by At

I'm not entirely sure I understand when I need to calculate a derivative using the definition and when I can do it normally. The following two examples confused me:

$$ g(x) = \begin{cases} x^2\cdot \sin(\frac {1}{x}) & x \neq 0 \\ 0 & x=0 \end{cases} $$

$$ f(x) = \begin{cases} e^{\frac {-1}{x}} & x > 0 \\ -x^2 & x\leq 0 \end{cases} $$

I understand that I can differentiate normally for any $x$ that's not 0 (in both of these examples). I'm confused because I saw an example with $f(x)$ in which they calculated the $f'(x)$ by differentiating:

$$ f'(x) = \begin{cases} \frac {1}{x^2}\cdot e^{\frac {-1}{x}} & x > 0 \\ -2x & x\leq0 \end{cases} $$

and then they calculated $f'(0)$ not using the definition but by $ \lim_{x\to0^-} f'(x)$ $\lim_{x\to0^+} f'(x)$

For $g(x)$ though I know that $g'(0)$ exists (using definition) but

$$g'(x) = \begin{cases} 2x\cdot \sin(\frac {1}{x})-\cos(\frac {1}{x}) & x \ne 0 \\ 0 & x=0 \end{cases}$$

and you can't calculate $\lim_{x\to0^-} g'(x)$ or $\lim_{x\to0^+} g'(x)$ since $\lim_{x\to0^{+/-}} 2x\cdot \sin(\frac {1}{x})-\cos(\frac {1}{x}) $ doesn't exist.

So what's the difference between these two? When can I just differentiate normally like in the first example ($f(x)$) and when do I have to use the definition like in the second example ($g(x)$)?

I'd appreciate the help.

Edit: When I"m referring to the definition I'm referring to the following:

$\lim_{h \rightarrow 0} \dfrac{f(x+h) - f(x)}{h}$

3

There are 3 best solutions below

2
On

Given a function $f(x)$ and a point $x_0$, it's possible to take $f'(x_0)$ by differentiating normally only if $\lim\limits_{x \rightarrow x_0} f'(x)$ exists. However, this is not the case for the $g(x)$ that you gave.

As $x \rightarrow 0$, $-\cos\left(\frac{1}{x}\right)$ oscillates, and, in fact, in any small neighbourhood of $0$, there are points $y$ and $z$ such that $-\cos\left(\frac{1}{y}\right) = -1$ and $-\cos\left(\frac{1}{z}\right) = 1$. Thus, the limit as $x \rightarrow 0$ of this part of the function $g'(x)$ gotten by normal differentiation does not exist, and so the limit of the whole function does not exist, and therefore, it cannot be used as the derivative at that point. However, using the limit definition of the derivative, it is possible to find that $\frac{dg}{dx}(0) = 0$.

8
On

Neither of them is calling on the definition of derivatives (at least, not the normal one I think you're thinking of, the limit of the difference quotient.)

In both cases, you are calculuating the derivative "normally" (by which I think you mean through a pre-learned formula) to find out what the derivative of the function is on pieces of the real line.

The limits that appear in what you wrote are checking to see if this combined derivative is continuous near zero. You see, in principal the two derivatives that you get on each side might not match up at $0$, maybe one hits the $y$ axis lower than the other one hits the $y$ axis. In that case the derivative would have a jump discontinuity at $0$, and it wouldn't be continuous.

Actually, the example of $g$ that you have here is even wilder than that: it oscilates wildly on each side of $0$, causing it to have no defined limit as it approaches zero. Thus any computation of the limit from either side results in "undefined", and the derivative isn't continuous.

0
On

In what you quoted, the statement $f'(x)=-2x$ is valid only on $x<0$. The existence of $f'(0)$ must be determined from the definition. But read on.

Perhaps the following exercise will help you. Suppose $f$ is continuous on $(-a,a)$ and differentiable except perhaps at $0$. Suppose $$\lim_{x\to 0} f'(x)=L\,.$$ Then $f$ is differentiable at $0$ and $f'(0)=L$. (Hint: Use the Mean Value Theorem.)

Let me add the comment that the discussion in comments above begs the question: We can't say $f'$ is continuous at $0$ unless we first know it is defined there!