合成微分律と勾配ベクトル 合成微分律 三角関数(正弦と余弦)、対数関数、累乗
続 解析入門 (原書第2版) (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第4章(合成微分律と勾配ベクトル)、1(合成微分律)の練習問題9の解答を求めてみる。
a
b
c
d
コード(Wolfram Language, Jupyter)
Grad[Sin[x^3 y + 2x^2], {x, y}]
Plot3D[
Sin[x^3 y + 2x^2],
{x, -2, 2},
{y, -2, 2},
AxesLabel -> Automatic
]
f[x_, y_] := Cos[3x^2y-4x]
Grad[f[x, y], {x, y}]
Plot3D[f[x, y], {x, -2, 2}, {y, -2, 2}, AxesLabel -> Automatic]
f[x_, y_] := Log[x^2y+5y]
Grad[f[x, y], {x, y}]
% // Simplify
Plot3D[f[x, y], {x, -5, 5}, {y, -5, 5}, AxesLabel -> Automatic]
f[x_, y_] := (x^2y+4x)^(1/2)
Grad[f[x, y], {x, y}]
% // Simplify
Plot3D[f[x, y], {x, -10, 10}, {y, -10, 10}, AxesLabel -> Automatic]