微分法 導関数とその計算 累乗、平方根、和、積、商、合成関数
微分積分演習〈理工系の数学入門コース/演習 新装版〉 (和達 三樹(著)、十河 清(著)、岩波書店)の第3章(微分法)、3-1(導関数とその計算)、問題1の解答を求めてみる。
1
2
3
4
コード(Wolfram Language, Jupyter)
f[x_] := x^3(1+x^2)
f'[x]
% == x^2(3+5x^2)
Simplify[%]
Plot[{f[x], f'[x]}, {x, -5, 5}, PlotRange -> {-5, 5}, PlotLegends -> "Expressions"]
f[x_] := Sqrt[x^2+1]
f'[x] == x / Sqrt[x^2+1]
Plot[{f[x], f'[x]}, {x, -5, 5}, PlotRange -> {-5, 5}, PlotLegends -> "Expressions"]
f[x_] := 1/(x(x+1))
f'[x] == -1/x^2+1/(x+1)^2
Simplify[%]
Plot[{f[x], f'[x]}, {x, -5, 5}, PlotRange -> {-5, 5}, PlotLegends -> "Expressions"]
f[x_] := 1/Sqrt[(x-a)(x-b)]
f'[x] == -(2x-a-b)/(2(x-a)(x-b)Sqrt[(x-a)(x-b)])
Simplify[%]
f[x_] := 1/Sqrt[(x-1)(x-2)]
Plot[{f[x], f'[x]}, {x, -5, 5}, PlotRange -> {-5, 5}, PlotLegends -> "Expressions"]