1変数関数の微分 関数の積・商・べき関数・合成関数の微分 関数の商の微分 三角関数(正弦と余弦と余接)
力学・電磁気学・熱力学のための基礎数学 (松下 貢(著)、裳華房)の第1章(微分)、1.1(1変数関数の微分)、1.1.3(関数の積・商・べき関数・合成関数の微分)、関数の商の微分の問題5の解答を求めてみる。
1
2
3
4
コード(Wolfram)
f[x_] := x / (x^2 + 2x + 2)
f'[x]
Simplify[%]
Plot[{f[x], f'[x]}, {x, -5, 5}, PlotLegends -> "Expressions"]
g[x_] := 1 / Cos[x]
g'[x]
Simplify[%]
% == Tan[x] / Cos[x]
Plot[{g[x], g'[x]}, {x, -5, 5}, PlotLegends -> "Expressions"]
h[x_] := Cot[x]
h'[x]
% == -1 / Sin[x]^2
Plot[{h[x], h'[x]}, {x, -5, 5}, PlotLegends -> "Expressions"]
i[x_] := 1 / x^5
i'[x]
Plot[{i[x], i'[x]}, {x, -5, 5}, PlotLegends -> "Expressions", PlotRange -> {-5, 5}]