1変数関数の微分 関数の積・商・べき関数・合成関数の微分 合成関数の微分 三角関数(正弦と余弦)、累乗根
力学・電磁気学・熱力学のための基礎数学 (松下 貢(著)、裳華房)の第1章(微分)、1.1(1変数関数の微分)、1.1.3(関数の積・商・べき関数・合成関数の微分)、合成関数の微分の問題7の解答を求めてみる。
1
2
3
4
コード(Wolfram)
fs = {
Cos[a x + b],
Sqrt[x^2 + 1],
(x^2+2)^(1/3),
Sqrt[(x-a)/(x+a)]
}
fs1 = D[fs, x]
Simplify[%]
Manipulate[
Plot3D[
{
Cos[a x + b],
-a Sin[b + a x]
},
{x, -5, 5},
{a, -5, 5},
AxesLabel -> Automatic,
PlotLegends -> "Expressions"
],
{b, -5, 5}
]
Plot[
{
Sqrt[1 + x^2],
x / Sqrt[1 + x^2]
},
{x, -5, 5},
AxesLabel -> Automatic,
PlotLegends -> "Expressions"
]
Plot[
{
(x^2+2)^(1/3),
2 x / (3 (2 + x^2)^(2/3))
},
{x, -5, 5},
AxesLabel -> Automatic,
PlotLegends -> "Expressions"
]
Manipulate[
Plot[
{
Sqrt[(x-a)/(x+a)],
a / (x+a)^2 Sqrt[(x+a)/(x-a)]
},
{x, -5, 5},
AxesLabel -> Automatic,
PlotLegends -> "Expressions"
],
{{a, 1}, -5, 5}
]