第5章 基本的な微分
Basic Derivatives
5.1 べき乗関数の微分
最も基本的で重要な微分公式は、べき乗関数の微分である。
$n$ を正の整数とするとき:
$$\frac{d}{dx}x^n = nx^{n-1}$$微分の定義から始める:
$$\frac{d}{dx}x^n = \lim_{h \to 0} \frac{(x+h)^n - x^n}{h}$$Step 1:二項定理を使って $(x+h)^n$ を展開する。
二項定理より:
$$(x+h)^n = \sum_{k=0}^{n} \binom{n}{k} x^{n-k} h^k$$ $$= \binom{n}{0}x^n + \binom{n}{1}x^{n-1}h + \binom{n}{2}x^{n-2}h^2 + \cdots + \binom{n}{n}h^n$$ $$= x^n + nx^{n-1}h + \frac{n(n-1)}{2}x^{n-2}h^2 + \cdots + h^n$$Step 2:$x^n$ を引く。
$$(x+h)^n - x^n = nx^{n-1}h + \frac{n(n-1)}{2}x^{n-2}h^2 + \cdots + h^n$$Step 3:$h$ で割る。
$$\frac{(x+h)^n - x^n}{h} = nx^{n-1} + \frac{n(n-1)}{2}x^{n-2}h + \cdots + h^{n-1}$$Step 4:$h \to 0$ の極限をとる。
$h$ を含む項はすべて $0$ に収束するので:
$$\lim_{h \to 0} \frac{(x+h)^n - x^n}{h} = nx^{n-1}$$具体例
公式より:
$$f'(x) = 2x^{2-1} = 2x$$公式より:
$$f'(x) = 3x^{3-1} = 3x^2$$公式より:
$$f'(x) = 5x^{5-1} = 5x^4$$5.2 定数倍と和の微分
$c$ を定数、$f(x)$ を微分可能な関数とするとき:
$$\frac{d}{dx}[c \cdot f(x)] = c \cdot f'(x)$$微分の定義より:
$$\frac{d}{dx}[c \cdot f(x)] = \lim_{h \to 0} \frac{c \cdot f(x+h) - c \cdot f(x)}{h}$$$c$ を括り出します:
$$= \lim_{h \to 0} c \cdot \frac{f(x+h) - f(x)}{h}$$定数は極限の外に出せる:
$$= c \cdot \lim_{h \to 0} \frac{f(x+h) - f(x)}{h}$$これは $f'(x)$ の定義そのものなので:
$$= c \cdot f'(x)$$$f(x)$, $g(x)$ が微分可能なとき:
$$\frac{d}{dx}[f(x) + g(x)] = f'(x) + g'(x)$$微分の定義より:
$$\frac{d}{dx}[f(x) + g(x)] = \lim_{h \to 0} \frac{[f(x+h) + g(x+h)] - [f(x) + g(x)]}{h}$$項を整理します:
$$= \lim_{h \to 0} \frac{[f(x+h) - f(x)] + [g(x+h) - g(x)]}{h}$$和を分ける:
$$= \lim_{h \to 0} \left[ \frac{f(x+h) - f(x)}{h} + \frac{g(x+h) - g(x)}{h} \right]$$極限は和に分配できます:
$$= \lim_{h \to 0} \frac{f(x+h) - f(x)}{h} + \lim_{h \to 0} \frac{g(x+h) - g(x)}{h}$$定義より:
$$= f'(x) + g'(x)$$定数倍と和の規則を使う:
$$f'(x) = \frac{d}{dx}(3x^2) + \frac{d}{dx}(5x)$$ $$= 3 \cdot \frac{d}{dx}(x^2) + 5 \cdot \frac{d}{dx}(x)$$ $$= 3 \cdot 2x + 5 \cdot 1$$ $$= 6x + 5$$5.3 多項式の微分
これまでの規則を組み合わせると、任意の多項式を微分できる。
多項式 $f(x) = a_n x^n + a_{n-1} x^{n-1} + \cdots + a_1 x + a_0$ の導関数は:
$$f'(x) = na_n x^{n-1} + (n-1)a_{n-1} x^{n-2} + \cdots + a_1$$和の微分と定数倍の微分を繰り返し適用する:
$$f'(x) = \frac{d}{dx}(a_n x^n) + \frac{d}{dx}(a_{n-1} x^{n-1}) + \cdots + \frac{d}{dx}(a_1 x) + \frac{d}{dx}(a_0)$$各項について定数倍の規則を適用:
$$= a_n \frac{d}{dx}(x^n) + a_{n-1} \frac{d}{dx}(x^{n-1}) + \cdots + a_1 \frac{d}{dx}(x) + 0$$べき乗の微分公式を適用:
$$= a_n \cdot nx^{n-1} + a_{n-1} \cdot (n-1)x^{n-2} + \cdots + a_1 \cdot 1$$整理すると:
$$= na_n x^{n-1} + (n-1)a_{n-1} x^{n-2} + \cdots + a_1$$Step 1:各項を微分する。
$$f'(x) = \frac{d}{dx}(x^4) - \frac{d}{dx}(2x^3) + \frac{d}{dx}(3x^2) - \frac{d}{dx}(x) + \frac{d}{dx}(7)$$Step 2:べき乗の公式と定数の微分を適用する。
$$= 4x^3 - 2 \cdot 3x^2 + 3 \cdot 2x - 1 + 0$$Step 3:計算を完了する。
$$= 4x^3 - 6x^2 + 6x - 1$$まず展開してから微分する方法:
Step 1:展開する。
$$f(x) = (x+1)(x-2) = x^2 - 2x + x - 2 = x^2 - x - 2$$Step 2:多項式として微分する。
$$f'(x) = 2x - 1$$5.4 負のべき乗の微分
べき乗の公式は、負の整数でも成り立つ。
$n$ を正の整数とするとき($x \neq 0$ で):
$$\frac{d}{dx}x^{-n} = -nx^{-n-1}$$すなわち:
$$\frac{d}{dx}\frac{1}{x^n} = \frac{-n}{x^{n+1}}$$$f(x) = x^{-n} = \frac{1}{x^n}$ について、微分の定義より:
$$f'(x) = \lim_{h \to 0} \frac{\frac{1}{(x+h)^n} - \frac{1}{x^n}}{h}$$Step 1:分子を通分する。
$$= \lim_{h \to 0} \frac{1}{h} \cdot \frac{x^n - (x+h)^n}{(x+h)^n \cdot x^n}$$Step 2:分子の $(x+h)^n$ を二項定理で展開する。
$$(x+h)^n = x^n + nx^{n-1}h + \text{($h^2$以上の項)}$$したがって:
$$x^n - (x+h)^n = -nx^{n-1}h - \text{($h^2$以上の項)}$$Step 3:代入して $h$ で割る。
$$f'(x) = \lim_{h \to 0} \frac{-nx^{n-1}h - (\text{$h^2$以上の項})}{h \cdot (x+h)^n \cdot x^n}$$ $$= \lim_{h \to 0} \frac{-nx^{n-1} - (\text{$h$以上の項})}{(x+h)^n \cdot x^n}$$Step 4:$h \to 0$ の極限をとる。
$$= \frac{-nx^{n-1}}{x^n \cdot x^n} = \frac{-nx^{n-1}}{x^{2n}} = -nx^{n-1-2n} = -nx^{-n-1}$$$f(x) = x^{-1}$ と書き直して:
$$f'(x) = -1 \cdot x^{-1-1} = -x^{-2} = -\frac{1}{x^2}$$$f(x) = x^{-3}$ と書き直して:
$$f'(x) = -3 \cdot x^{-3-1} = -3x^{-4} = -\frac{3}{x^4}$$$f(x) = 2x^{-2} + 3x^{-1}$ と書き直して:
$$f'(x) = 2 \cdot (-2)x^{-3} + 3 \cdot (-1)x^{-2}$$ $$= -4x^{-3} - 3x^{-2}$$ $$= -\frac{4}{x^3} - \frac{3}{x^2}$$5.5 べき乗の公式の一般化
べき乗の微分公式は、実数のべき乗にも拡張できる。
任意の実数 $\alpha$ に対して($x > 0$ のとき):
$$\frac{d}{dx}x^\alpha = \alpha x^{\alpha - 1}$$この定理の証明には対数微分法が必要なので、後の章で扱う。ここでは公式として使う。
$\sqrt{x} = x^{1/2}$ なので:
$$f'(x) = \frac{1}{2}x^{1/2 - 1} = \frac{1}{2}x^{-1/2} = \frac{1}{2\sqrt{x}}$$$\sqrt[3]{x} = x^{1/3}$ なので:
$$f'(x) = \frac{1}{3}x^{1/3 - 1} = \frac{1}{3}x^{-2/3} = \frac{1}{3\sqrt[3]{x^2}}$$5.6 基本公式のまとめ
| 関数 $f(x)$ | 導関数 $f'(x)$ |
|---|---|
| $c$(定数) | $0$ |
| $x$ | $1$ |
| $x^n$ | $nx^{n-1}$ |
| $x^{-n} = \frac{1}{x^n}$ | $-nx^{-n-1} = -\dfrac{n}{x^{n+1}}$ |
| $\sqrt{x} = x^{1/2}$ | $\dfrac{1}{2\sqrt{x}}$ |
| $c \cdot f(x)$ | $c \cdot f'(x)$ |
| $f(x) + g(x)$ | $f'(x) + g'(x)$ |
練習問題
次の関数を微分せよ。
- $f(x) = x^6$
- $f(x) = 4x^3 - 2x + 5$
- $f(x) = x^4 + 3x^3 - 2x^2 + x - 1$
- $f(x) = \frac{5}{x^2}$
次の関数を微分せよ。
- $f(x) = \sqrt{x}$
- $f(x) = x^{3/2}$
- $f(x) = \frac{1}{\sqrt{x}}$
$f(x) = x^2 + 2x - 3$ について:
- $f'(x)$ を求めよ。
- $f'(1)$ の値を求めよ。
- $x = 1$ における接線の方程式を求めよ。
解答を見る
練習1の解答
- $f'(x) = 6x^5$
- $f'(x) = 12x^2 - 2$
- $f'(x) = 4x^3 + 9x^2 - 4x + 1$
- $f(x) = 5x^{-2}$ より $f'(x) = -10x^{-3} = -\frac{10}{x^3}$
練習2の解答
- $f'(x) = \frac{1}{2}x^{-1/2} = \frac{1}{2\sqrt{x}}$
- $f'(x) = \frac{3}{2}x^{1/2} = \frac{3\sqrt{x}}{2}$
- $f(x) = x^{-1/2}$ より $f'(x) = -\frac{1}{2}x^{-3/2} = -\frac{1}{2x\sqrt{x}}$
練習3の解答
- $f'(x) = 2x + 2$
- $f'(1) = 2(1) + 2 = 4$
- $f(1) = 1 + 2 - 3 = 0$ なので、点 $(1, 0)$ を通り傾き $4$ の直線: $$y - 0 = 4(x - 1)$$ $$y = 4x - 4$$