自然法則の微分方程式 微積分の予備知識 不定積分、三角関数(正弦と余弦、逆正弦関数、逆正接関数)、双曲線余弦関数、正接関数、指数関数、対数関数、部分積分法、置換積分法
微分方程式演習〈理工系の数学入門コース/演習 新装版〉 (和達 三樹(著)、矢嶋 徹(著)、岩波書店)の第1章(自然法則の微分方程式)、1-1(微積分の予備知識)、問題2の解答を求めてみる。
1
2
とおく。
3
4
5
6
7
よって、
8
コード(Wolfram Language, Jupyter)
D[1 / a ArcTan[a x], x]
Plot3D[
%,
{x, -5, 5},
{a, -5, 5},
AxesLabel -> Automatic
]
D[ArcSin[x / a], x]
Simplify[%]
Plot3D[%, {x, -5, 5}, {a, -5, 5}, AxesLabel -> Automatic]
1
Power::infy: Infinite expression -------- encountered.
Sqrt[0.]
1
Power::infy: Infinite expression -------- encountered.
Sqrt[0.]
1
Power::infy: Infinite expression -------- encountered.
Sqrt[0.]
Further output of `1` will be suppressed during this calculation.: Further output of Power::infy will be suppressed during this calculation.
D[1 / a Tanh[a x], x]
% == 1 / Cosh[a x]^2
Plot3D[Sech[a x]^2, {x, -5, 5}, {a, -5, 5}, AxesLabel -> Automatic]
D[2 ArcTan[Exp[x]], x]
% == 1 / Cosh[x]
Simplify[%]
Plot[1 / Cosh[x], {x, -5, 5}]
D[1 / 2 ArcTan[x^2], x]
Plot[%, {x, -5, 5}]
D[x Log[x] - x, x]
Plot[%, {x, -5, 5}]
D[Exp[x] / 2 (Cos[x] + Sin[x]), x]
Simplify[%]
Plot[%, {x, -5, 5}]
D[-x Cos[x] + Sin[x], x]
Plot[%, {x, -2 Pi, 2 Pi}]
Plot[x Sin[x], {x, -50, 50}]