ポテンシャル関数 積分記号下の微分 対数関数
続 解析入門 (原書第2版) (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第5章(ポテンシャル関数)、5(積分記号下の微分)の練習問題7の解答を求めてみる。
コード、入出力結果(Wolfram Language、Jupyter)
Integrate[Log[t y]/t, {t, 1, x}]
f[x_, y_] := (-Log[y]^2+Log[x y]^2)/2
D[f[x, y], x]
D[f[x, y], y]
% // Simplify
Plot3D[f[x, y], {x, 1, 5}, {y, 1, 5}, AxesLabel -> Automatic]