物理学のブログ

積分 置換積分 置換積分のいろいろな例 平方根、指数関数、累乗

力学・電磁気学・熱力学のための基礎数学 (松下 貢(著)、裳華房)の第2章(積分)、2.5(置換積分)、置換積分のいろいろな例、問題10の解答を求めてみる。

1

t=x2+3

とおくと、

t2=x2+32t=2xdxdttdt=xdx
xx2+3dx=t·tdt=13t3+C=13(x2+3)x2+3+C

2

t=x2+1t2=x2+12t=2xdxdtx2=t2-1
x3x2+1dx=t(t2-1)tdt=15t5-13t3+C=15(x2+1)2x2+1-13(x2+1)2x2+1+C

3

t=x2dtdx=2x
xex2dx=12etdt=12ex2+C

コード(Wolfram Language)

f[x_] := x Sqrt[x^2+3]
Integrate[f[x], x]
Output
Plot[{%, f[x]}, {x, -5, 5}, PlotRange -> {-5, 5}]
Output
f[x_] := x^3 Sqrt[x^2+1]
Integrate[f[x], x]
Output
1/5(x^2+1)^(5/2)-1/3(x^2+1)^(3/2) - %
Output
Simplify[%]
0
Plot[{f[x], Evaluate[Integrate[f[x], x]]},
     {x, -5, 5},
     PlotRange -> {-5, 5},
     PlotLegends -> "Expressions"
]
Output
f[x_] := x Exp[x^2]
Integrate[f[x], x]
Output
Plot[{%, f[x]}, {x, -5, 5},
     PlotRange -> {-5, 5},
     PlotLegends -> "Expressions"
]
Output