自然法則の微分方程式 微積分の予備知識 導関数、累乗、積、商、三角関数(正弦と余弦)、指数関数、対数関数、合成関数の微分
微分方程式演習〈理工系の数学入門コース/演習 新装版〉 (和達 三樹(著)、矢嶋 徹(著)、岩波書店)の第1章(自然法則の微分方程式)、1-1(微積分の予備知識)、問題1の解答を求めてみる。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
コード(Wolfram Language, Jupyter)
f[x_] := x^4+x^3+x^2+x+1;
f'[x]
TraditionalForm[%]
Plot[{f[x], f'[x]}, {x, -5, 5}, PlotRange -> {-5, 5}, PlotLegends -> "Expressions"]
f[x_] := x^a
f'[x]
D[(a x+b)^c, x]
D[Cos[a x] Sin[b x], x]
f[x_] := x Log[x]
f'[x]
Plot[{f[x], f'[x]}, {x, 0, 10}, PlotRange -> {-5, 5}, PlotLegends -> "Expressions"]
D[a^x, x]
D[Tan[x], x]
% == 1 / Cos[x]^2
Plot[{Tan[x], 1 / Cos[x]^2},
{x, -5, 5},
PlotRange -> {-5, 5}, PlotLegends -> "Expressions"]
D[x / (x^2+1), x]
Simplify[%]
f[x_] := x / (x^2 + 1)
Plot[{f[x], f'[x]}, {x, -5, 5},
PlotRange -> {-5, 5},
PlotLegends -> "Expressions"
]
f[x_] := Exp[x^2]
f'[x]
Plot[{f[x], f'[x]}, {x, -5, 5},
PlotRange -> {-5, 5},
PlotLegends -> "Expressions"
]
f[x_] := Cos[Log[x]]
f'[x]
Plot[{f[x], f'[x]}, {x, 0, 10},
PlotRange -> {-10, 10},
PlotLegends -> "Expressions"
]
f[x_] := Log[Log[x]]
f'[x]
Plot[{f[x], f'[x]}, {x, 0, 10},
PlotRange -> {-10, 10},
PlotLegends -> "Expressions"
]
f[x_, a_] := Exp[-I a x]
D[f[x, a], x]
ComplexPlot[f[x, 1], {x, -2-2I, 2+2I}]
ComplexPlot[D[f[x, 1], x], {x, -2-2I, 2+2I}]
D[x^x,x]
Plot[{x^x, x^x (1+Log[x])}, {x, 0, 10}, PlotRange -> {-5, 5}, PlotLegends -> "Expressions"]
D[x^Log[x], x]
f[x_] := x^Log[x]
f'[x]
Plot[{f[x], f'[x]}, {x, 0, 10}, PlotRange -> {-5, 5}, PlotLegends -> "Expressions"]