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