積分 初等関数の不定積分 累乗、積分定数、定積分、面積
力学・電磁気学・熱力学のための基礎数学 (松下 貢(著)、裳華房)の第2章(積分)、2.4(初等関数の不定積分)、問題1、2、3の解答を求めてみる。
1
2
3
コード(Wolfram Language)
f[x_] := x^2
Integrate[f[x], x]
Integrate[f[x], {x, 3, 6}]
63
Show[
Plot[f[x], {x, -10, 10}, PlotRange -> {0, 50}],
Plot[f[x], {x, 3, 6}, PlotStyle -> Red, Filling -> Axis, PlotRange -> {0, 50}]
]
g[x_] := x^3+4x^2+3x+2
Integrate[g[x], x]
Plot[g[x], {x, -5, 5}, PlotRange -> {-10, 10}]