数学のブログ

関数の変化をとらえる - 関数の極限と微分法 導関数とその計算 微分可能性と連続性 絶対値、右側微分係数、左側微分係数

新装版 数学読本4 (松坂 和夫(著)、岩波書店)の第17章(関数の変化をとらえる - 関数の極限と微分法)、17.3(導関数とその計算)、微分可能性と連続性の問23の解答を求めてみる。

1

x 0 f ( x + 0 ) - f ( 0 ) x - 0 = | x 2 - x | x = | x | x | x - 1 |

なので、 右側微分係数は、

lim x + 0 f ( x ) - f ( 0 ) x - 0 = lim x + 0 x x | x - 1 | = lim x + 0 | x - 1 | = 1

左側微分係数は、

lim x - 0 f ( x ) - f ( 0 ) x - 0 = lim x - 0 - x x | x - 1 | = - lim x - 0 | x - 1 | = - 1

よって、 微分可能ではない。

2

x 0 f ( x ) - f ( 0 ) x - 0 = x | x | x = | x |

よって、 微分可能で、

lim x 0 f ( x ) - f ( 0 ) x - 0 = 0

コード

#!/usr/bin/env python3
from sympy import symbols, plot

colors = ['red', 'green', 'blue', 'brown', 'orange',
          'purple', 'pink', 'gray', 'skyblue', 'yellow']

x = symbols('x')
p = plot(abs(x ** 2 - x), x * abs(x),
         (x, -2, 2),
         ylim=(-2, 2),
         legend=True,
         show=False)
for o, color in zip(p, colors):
    o.line_color = color
p.show()
p.save('sample23.png')

入出力結果

% ./sample23.py
%