微分 対数関数とその微分
力学・電磁気学・熱力学のための基礎数学 (松下 貢(著)、裳華房)の第1章(微分)、1.4(対数関数とその微分)の問題13の解答を求めてみる。
1
2
3
コード(Wolfram)
fs = {Log[x^2+1], x Log[x], x^2 Log[x^2+2]}
D[fs,x]
Plot[fs, {x, -10, 10}, PlotRange -> {-10, 10}, PlotLegends -> "Expressions"]
Table[
Plot[
Evaluate[{f, D[f, x]}],
{x, -10, 10},
PlotRange -> {-10, 10},
PlotLegends -> "Expressions"
],
{f, fs}
]