Return to SymPy で理工系の数学B

SymPy で 1 変数関数の積分

Python で微分積分などの記号計算をする場合は,以下のように必要なパッケージを import します。(弘大 JupyterHub では必要なパッケージはインストール済みです。)

セルをクリックして,上のメニューから「▶︎ Run」をクリックするか,Shift キーを押しながら Enter キー(Return キー)を押すと実行します。

In [1]:
from sympy.abc import * 
from sympy import *

# SymPy Plotting Backends (SPB): グラフを描く際に利用
from spb import *

# グラフを SVG で Notebook にインライン表示
%config InlineBackend.figure_formats = ['svg']

不定積分

微分の逆演算としての不定積分。
微分は与えられた関数から,その導関数を求める。(不定)積分とは,導関数が与えられたときに,微分する前のもとの関数を求めること。その意味で,微分の逆演算。

導関数が求められている全ての初等関数は,逆演算としての不定積分を行なうと初等関数を使って表すことができる。

以下の不定積分では,積分定数は省略されて出力される。

SymPy では不定積分は以下のように書きます。

$\displaystyle \int f(x) dx = $ integrate(f(x), x)

べき関数

$\displaystyle \int x^p\, dx$ の積分。

In [2]:
# とっとと答えを知りたい場合は...

integrate(x**p, x)
Out[2]:
$\displaystyle \begin{cases} \frac{x^{p + 1}}{p + 1} & \text{for}\: p \neq -1 \\\log{\left(x \right)} & \text{otherwise} \end{cases}$
In [3]:
# 何を計算するかを表示させてから実行する場合は...

Eq(Integral(x**p, x), 
   Integral(x**p, x).doit())
Out[3]:
$\displaystyle \int x^{p}\, dx = \begin{cases} \frac{x^{p + 1}}{p + 1} & \text{for}\: p \neq -1 \\\log{\left(x \right)} & \text{otherwise} \end{cases}$

指数関数

$\displaystyle \int e^x\, dx$ の積分。

In [4]:
Eq(Integral(exp(x), x), 
   Integral(exp(x), x).doit())
Out[4]:
$\displaystyle \int e^{x}\, dx = e^{x}$

原始関数が自然対数になる例

$\displaystyle \int \frac{1}{x}\, dx = \log |x|$ となるはずですが…

In [5]:
Eq(Integral(1/x, x), 
   Integral(1/x, x).doit())
Out[5]:
$\displaystyle \int \frac{1}{x}\, dx = \log{\left(x \right)}$

SymPy の積分では $\log$ の中身の絶対値を省略する傾向にある。

三角関数の不定積分

In [6]:
Eq(Integral(cos(x), x), 
   Integral(cos(x), x).doit())
Out[6]:
$\displaystyle \int \cos{\left(x \right)}\, dx = \sin{\left(x \right)}$
In [7]:
Eq(Integral(sin(x), x), 
   Integral(sin(x), x).doit())
Out[7]:
$\displaystyle \int \sin{\left(x \right)}\, dx = – \cos{\left(x \right)}$
In [8]:
Eq(Integral(1/cos(x)**2, x), 
   Integral(1/cos(x)**2, x).doit())
Out[8]:
$\displaystyle \int \frac{1}{\cos^{2}{\left(x \right)}}\, dx = \frac{\sin{\left(x \right)}}{\cos{\left(x \right)}}$
In [9]:
# simplify すれば tan(x) に

Eq(integrate(1/cos(x)**2, x),
   integrate(1/cos(x)**2, x).simplify())
Out[9]:
$\displaystyle \frac{\sin{\left(x \right)}}{\cos{\left(x \right)}} = \tan{\left(x \right)}$

原始関数が逆三角関数になる例

In [10]:
Eq(Integral(1/sqrt(1-x**2), x), 
   Integral(1/sqrt(1-x**2), x).doit())
Out[10]:
$\displaystyle \int \frac{1}{\sqrt{1 – x^{2}}}\, dx = \operatorname{asin}{\left(x \right)}$
$$\left(\cos^{-1} x\right)’ = – \frac{1}{\sqrt{1-x^2}}$$なので
$$- \int \frac{1}{\sqrt{1-x^2}}\, dx = \cos^{-1} x$$となりそうですが…
In [11]:
Eq(Integral(-1/sqrt(1-x**2), x), 
   Integral(-1/sqrt(1-x**2), x).doit())
Out[11]:
$\displaystyle \int \left(- \frac{1}{\sqrt{1 – x^{2}}}\right)\, dx = – \operatorname{asin}{\left(x \right)}$

実は
$$\cos^{-1} x + \sin^{-1} x = \frac{\pi}{2}$$という関係があったので,
$$- \sin^{-1} x = \cos^{-1} x + \frac{\pi}{2}$$

$\cos^{-1} x$ と $- \sin^{-1} x$ の違い $\displaystyle \frac{\pi}{2}$ は積分定数の中に含まれてしまいます。

In [12]:
# 不定積分の答えを acos(x) を使って書き直すと...

Eq(Integral(-1/sqrt(1-x**2), x), 
   integrate(-1/sqrt(1-x**2), x).rewrite(acos))
Out[12]:
$\displaystyle \int \left(- \frac{1}{\sqrt{1 – x^{2}}}\right)\, dx = \operatorname{acos}{\left(x \right)} – \frac{\pi}{2}$

定積分

SymPy では定積分は以下のように書きます。

$\displaystyle \int_a^b f(x)\, dx = $ integrate(f(x), (x, a, b))

置換積分

置換積分の項で例としてあげている不定積分:$\displaystyle\ \ \int \frac{\log x}{x} \, dx$

In [13]:
integrate(log(x)/x, x)
Out[13]:
$\displaystyle \frac{\log{\left(x \right)}^{2}}{2}$

簡単な場合だと integrate() で積分できてしまう。これを敢えて置換積分しているのが以下の例。

まず,不定積分を int1 として定義。

In [14]:
int1 = Integral(log(x)/x, x)
int1
Out[14]:
$\displaystyle \int \frac{\log{\left(x \right)}}{x}\, dx$

int1 の中身を .transform(log(x), t) によって $\log x \Rightarrow t$ という変数に置換する。

In [15]:
int2 = int1.transform(log(x), t)
int2
Out[15]:
$\displaystyle \int \log{\left(e^{t} \right)}\, dt$

上式ではさらに $\log \left(e^t\right) = t$ となるはずだが,そこはほっておいて .doit() で実際に積分を実行させる。

In [16]:
int2.doit()
Out[16]:
$\displaystyle \frac{t^{2}}{2}$

最後に .subs(t, log(x)) によって $t$ をもとの $\log x$ で表すと…

In [17]:
int2.doit().subs(t, log(x))
Out[17]:
$\displaystyle \frac{\log{\left(x \right)}^{2}}{2}$

部分積分

部分積分の例としてあげている $\displaystyle \int \log x \, dx$ も,特に問題なく積分できてしまいます。

In [18]:
Eq(Integral(log(x), x), 
   Integral(log(x), x).doit())
Out[18]:
$\displaystyle \int \log{\left(x \right)}\, dx = x \log{\left(x \right)} – x$

逆三角関数の積分

問:
逆三角関数や逆双曲線関数の微分はやったけど,逆三角関数や逆双曲線関数の積分はどうなるの?

答:
部分積分してください。基本的に逆三角関数や逆双曲線関数の微分がわかれば,積分もできます。

In [19]:
Eq(Integral(asin(x), x), 
   Integral(asin(x), x).doit())
Out[19]:
$\displaystyle \int \operatorname{asin}{\left(x \right)}\, dx = x \operatorname{asin}{\left(x \right)} + \sqrt{1 – x^{2}}$
In [20]:
Eq(Integral(acos(x), x), 
   Integral(acos(x), x).doit())
Out[20]:
$\displaystyle \int \operatorname{acos}{\left(x \right)}\, dx = x \operatorname{acos}{\left(x \right)} – \sqrt{1 – x^{2}}$
In [21]:
Eq(Integral(atan(x), x), 
   Integral(atan(x), x).doit())
Out[21]:
$\displaystyle \int \operatorname{atan}{\left(x \right)}\, dx = x \operatorname{atan}{\left(x \right)} – \frac{\log{\left(x^{2} + 1 \right)}}{2}$

逆双曲線関数の積分

In [22]:
Eq(Integral(asinh(x), x), 
   Integral(asinh(x), x).doit())
Out[22]:
$\displaystyle \int \operatorname{asinh}{\left(x \right)}\, dx = x \operatorname{asinh}{\left(x \right)} – \sqrt{x^{2} + 1}$

本稿執筆時点では,SymPy ではなぜか $\cosh^{-1} x$ の積分ができない。バグ?

In [23]:
integrate(acosh(x), x)
Out[23]:
$\displaystyle \int \operatorname{acosh}{\left(x \right)}\, dx$

しかたがないので,まずは人力で部分積分の形にします。

\begin{eqnarray}
\int \operatorname{acosh}{x}\, dx &=&
x \operatorname{acosh}{x} – \int x \frac{d}{dx} \operatorname{acosh}{x} \,dx
\end{eqnarray}

$\operatorname{acosh}{x}$ の微分は,SymPy では…

In [24]:
diff(acosh(x), x)
Out[24]:
$\displaystyle \frac{1}{\sqrt{x – 1} \sqrt{x + 1}}$

SymPy はどうもこの手の積分が苦手のようです。

In [25]:
Integral(x/(sqrt(x-1)*sqrt(x+1)), x)
Out[25]:
$\displaystyle \int \frac{x}{\sqrt{x – 1} \sqrt{x + 1}}\, dx$

分母を以下のように書き換えると簡単に答えをだします。

In [26]:
Eq(Integral(x/(sqrt(x**2-1)), x), 
   Integral(x/(sqrt(x**2-1)), x).doit())
Out[26]:
$\displaystyle \int \frac{x}{\sqrt{x^{2} – 1}}\, dx = \sqrt{x^{2} – 1}$

ということで,結局…

In [27]:
Eq(Integral(acosh(x), x), 
   x * acosh(x) - integrate(x/(sqrt(x**2-1)), x))
Out[27]:
$\displaystyle \int \operatorname{acosh}{\left(x \right)}\, dx = x \operatorname{acosh}{\left(x \right)} – \sqrt{x^{2} – 1}$
In [28]:
Eq(Integral(atanh(x), x), 
   integrate(atanh(x), x))
Out[28]:
$\displaystyle \int \operatorname{atanh}{\left(x \right)}\, dx = x \operatorname{atanh}{\left(x \right)} + \log{\left(x + 1 \right)} – \operatorname{atanh}{\left(x \right)}$

これでもいいですが,$\displaystyle\int \operatorname{atan}{\left(x \right)}\, dx$ との対応がわかりやすい形にしてみます。

まずは人力で部分積分の形にして…

\begin{eqnarray}
\int \operatorname{atanh}{\left(x \right)}\, dx &=&
x \operatorname{atanh}{\left(x \right)} – \int x \frac{d}{dx}\operatorname{atanh}{\left(x \right)}\,dx
\end{eqnarray}

$\operatorname{atanh}{\left(x \right)}$ の微分は SymPy では…

In [29]:
diff(atanh(x), x)
Out[29]:
$\displaystyle \frac{1}{1 – x^{2}}$
In [30]:
Eq(Integral(atanh(x), x), 
   x* atanh(x) - integrate(x/(1-x**2), x))
Out[30]:
$\displaystyle \int \operatorname{atanh}{\left(x \right)}\, dx = x \operatorname{atanh}{\left(x \right)} + \frac{\log{\left(x^{2} – 1 \right)}}{2}$

惜しい! $\operatorname{atanh}{\left(x \right)}$ の $x$ のとりうる範囲は $-1 < x < 1$ なので,最後の $\log$ の項は

$\displaystyle \int \operatorname{atanh}{\left(x \right)}\, dx = x \operatorname{atanh}{\left(x \right)} + \frac{\log{\left(1-x^{2} \right)}}{2}$

と書くべきだよねぇ。

有理関数の積分

$$f(x) = \frac{2 x^3 + 3 x^2 – 2 x – 1}{x^2 + x – 2}$$

のように $\displaystyle \frac{\mbox{多項式}}{\mbox{多項式}}$ の形になっている関数を有理関数という。

有理関数を積分する際は,部分分数に分解してから積分する。

SymPy では特に気にせず integrate() で積分できてしまう。

In [31]:
f = (2 * x**3 + 3 * x**2 - 2 * x - 1)/(x**2 + x - 2)
f
Out[31]:
$\displaystyle \frac{2 x^{3} + 3 x^{2} – 2 x – 1}{x^{2} + x – 2}$
In [32]:
integrate(f, x)
Out[32]:
$\displaystyle x^{2} + x + \frac{2 \log{\left(x – 1 \right)}}{3} + \frac{\log{\left(x + 2 \right)}}{3}$

部分分数に分解

上記のように,SymPy では特に部分分数に分解しなくても積分てきでしまうのであるが,そこをあえて apart() 関数で部分分数に分解してみる。

In [33]:
af = apart(f)
af
Out[33]:
$\displaystyle 2 x + 1 + \frac{1}{3 \left(x + 2\right)} + \frac{2}{3 \left(x – 1\right)}$

部分分数に分解することで,以下のような積分をすればいいのだなぁと理解できる。

\begin{eqnarray}
\int f(x) dx &=&
\int (2x+1) dx + \frac{1}{3} \int \frac{dx}{x+2} + \frac{2}{3}\int \frac{dx}{x-1} \\
&=& x^2 + x + \frac{1}{3} \log(x+2) + \frac{2}{3} \log(x-1)
\end{eqnarray}

In [34]:
Eq(Integral(af, x), 
   Integral(af, x).doit())
Out[34]:
$\displaystyle \int \left(2 x + 1 + \frac{1}{3 \left(x + 2\right)} + \frac{2}{3 \left(x – 1\right)}\right)\, dx = x^{2} + x + \frac{2 \log{\left(x – 1 \right)}}{3} + \frac{\log{\left(x + 2 \right)}}{3}$

$\sin x, \cos x$ の有理関数の積分

たとえば,$\displaystyle \frac{(\sin x)^2}{1 + \cos x + 2 \sin x}$ のような, $\sin x$ と $\cos x$ の有理関数の形の関数の積分。

教科書的には $\displaystyle \tan \frac{x}{2} \equiv t$ という変数変換をして置換積分すればよいということになっている。

練習問題 1

$\displaystyle \int \frac{1}{\cos x} \,dx$

これはそのままの形で integrate() できる。

In [35]:
ans1 = integrate(1/cos(x), x)
Eq(Integral(1/cos(x), x), ans1)
Out[35]:
$\displaystyle \int \frac{1}{\cos{\left(x \right)}}\, dx = – \frac{\log{\left(\sin{\left(x \right)} – 1 \right)}}{2} + \frac{\log{\left(\sin{\left(x \right)} + 1 \right)}}{2}$

教育的見地から置換積分でもやってみる。

$\displaystyle \tan \frac{x}{2} \equiv t$ とおいて…

In [36]:
int1 = Integral(1/cos(x), x)
int2 = int1.transform(tan(x/2), t).trigsimp()
int2
Out[36]:
$\displaystyle \int \frac{2}{1 – t^{2}}\, dt$

これは(被積分関数を部分分数に分解すれば)簡単に積分できて…

In [37]:
ans = int2.doit()
ans
Out[37]:
$\displaystyle – \log{\left(t – 1 \right)} + \log{\left(t + 1 \right)}$

最後に $t$ を $\displaystyle \tan \frac{x}{2}$ に戻して…

In [38]:
ans2 = ans.subs(t, tan(x/2))
ans2
Out[38]:
$\displaystyle – \log{\left(\tan{\left(\frac{x}{2} \right)} – 1 \right)} + \log{\left(\tan{\left(\frac{x}{2} \right)} + 1 \right)}$

というわけで,一見表示の異なる原始関数が得られた。(絶対値を省略しているけど。)

\begin{eqnarray}
\int \frac{1}{\cos{\left(x \right)}}\, dx &=&
\frac{1}{2}\log\frac{1+\sin x}{1-\sin x} \\
&=& \log\left|\frac{1+\tan \frac{x}{2}}{1-\tan \frac{x}{2}} \right|
\end{eqnarray}

これらが同等であることを示しておいてください。

ヒント:たとえば $ \sin x = 2 \sin\frac{x}{2} \cos\frac{x}{2}$ を使うとか。

練習問題 2

$\displaystyle\int \frac{a – b \cos\phi}{a^2 + b^2 -2 a b \cos \phi} d\phi$

In [39]:
a = Symbol('a', positive = True)
b = Symbol('b', positive = True)
var('phi')

int1 = Integral((a-b*cos(phi))/(a**2 + b**2 - 2*a*b*cos(phi)), phi)
int1
Out[39]:
$\displaystyle \int \frac{a – b \cos{\left(\phi \right)}}{a^{2} – 2 a b \cos{\left(\phi \right)} + b^{2}}\, d\phi$
In [40]:
int1.doit()
Out[40]:
$\displaystyle \frac{\phi}{2 a} – \frac{i \log{\left(- \frac{i a}{a + b} + \frac{i b}{a + b} + \tan{\left(\frac{\phi}{2} \right)} \right)}}{2 a} + \frac{i \log{\left(\frac{i a}{a + b} – \frac{i b}{a + b} + \tan{\left(\frac{\phi}{2} \right)} \right)}}{2 a}$

いちおう積分はできているようだが,虚数単位 $i$ が現れていて意味不明。

セオリーに従って $\displaystyle \tan \frac{\phi}{2} \equiv t$ とおいて…

In [41]:
int2 = int1.transform(tan(phi/2), t).trigsimp()
int2
Out[41]:
$\displaystyle \int \frac{2 \left(a – \frac{b \left(1 – t^{2}\right)}{t^{2} + 1}\right)}{\left(t^{2} + 1\right) \left(a^{2} – \frac{2 a b \left(1 – t^{2}\right)}{t^{2} + 1} + b^{2}\right)}\, dt$

被積分関数を部分分数に分解してみる。

In [42]:
ft = diff(int2, t).apart(t)
ft
Out[42]:
$\displaystyle \frac{\left(a – b\right) \left(a + b\right)}{a \left(a^{2} t^{2} + a^{2} + 2 a b t^{2} – 2 a b + b^{2} t^{2} + b^{2}\right)} + \frac{1}{a \left(t^{2} + 1\right)}$

それぞれの項を積分してみる。

In [43]:
term1 = 1/a/(t**2+1)
Eq(Integral(term1, t) + Integral((ft-term1), t), 
   integrate(term1, t) +integrate((ft-term1), t).simplify())
Out[43]:
$\displaystyle \int \frac{1}{a \left(t^{2} + 1\right)}\, dt + \int \frac{\left(a – b\right) \left(a + b\right)}{a \left(a^{2} t^{2} + a^{2} + 2 a b t^{2} – 2 a b + b^{2} t^{2} + b^{2}\right)}\, dt = \frac{\operatorname{atan}{\left(t \right)}}{a} + \frac{\operatorname{atan}{\left(\frac{t \left(a + b\right)}{a – b} \right)}}{a}$

かなりすっきりしてきた。最後に $t$ を $\displaystyle \tan \frac{\phi}{2}$ に戻して…

In [44]:
ans = integrate(term1, t) +integrate((ft-term1), t).simplify()
ans.subs(t, tan(phi/2))
Out[44]:
$\displaystyle \frac{\operatorname{atan}{\left(\frac{\left(a + b\right) \tan{\left(\frac{\phi}{2} \right)}}{a – b} \right)}}{a} + \frac{\operatorname{atan}{\left(\tan{\left(\frac{\phi}{2} \right)} \right)}}{a}$

練習問題 3

$\displaystyle\int \frac{a – b \cos\theta}{\left(a^2 + b^2 -2 a b \cos \theta\right)^{\frac{3}{2}}} \sin\theta\, d\theta$

In [45]:
var('theta')
int1 = Integral(
    (a-b*cos(theta))/(sqrt(a**2+b**2-2*a*b*cos(theta)))**3*sin(theta), theta)
int1
Out[45]:
$\displaystyle \int \frac{\left(a – b \cos{\left(\theta \right)}\right) \sin{\left(\theta \right)}}{\left(a^{2} – 2 a b \cos{\left(\theta \right)} + b^{2}\right)^{\frac{3}{2}}}\, d\theta$

integrate() で積分できます。

In [46]:
int1.doit().factor()
Out[46]:
$\displaystyle – \frac{a \cos{\left(\theta \right)} – b}{a^{2} \sqrt{a^{2} – 2 a b \cos{\left(\theta \right)} + b^{2}}}$

あえて置換積分でやってみると,$u \equiv \cos\theta$ とおいて…

無理関数の積分

例 1

$\displaystyle \int \frac{dx}{x \sqrt{x+1}}$

SymPy ではそのまま integrate() できます。

In [47]:
integrate(1/(x*sqrt(x+1)), x)
Out[47]:
$\displaystyle \begin{cases} – 2 \operatorname{acoth}{\left(\sqrt{x + 1} \right)} & \text{for}\: \left|{x + 1}\right| > 1 \\- 2 \operatorname{atanh}{\left(\sqrt{x + 1} \right)} & \text{otherwise} \end{cases}$

$\log$ であらわすと…

In [48]:
integrate(1/(x*sqrt(x+1)), x).rewrite(log)
Out[48]:
$\displaystyle \begin{cases} \log{\left(1 – \frac{1}{\sqrt{x + 1}} \right)} – \log{\left(1 + \frac{1}{\sqrt{x + 1}} \right)} & \text{for}\: \left|{x + 1}\right| > 1 \\\log{\left(1 – \sqrt{x + 1} \right)} – \log{\left(\sqrt{x + 1} + 1 \right)} & \text{otherwise} \end{cases}$

これをあえて $\sqrt{x+1} = t$ とおいて置換積分してみると…

In [49]:
int1 = Integral(1/(x*sqrt(x+1)), x)
int1
Out[49]:
$\displaystyle \int \frac{1}{x \sqrt{x + 1}}\, dx$
In [50]:
int2 = int1.transform(sqrt(x+1), t)
int2
Out[50]:
$\displaystyle \int \frac{2 t}{\left(t^{2} – 1\right) \sqrt{t^{2}}}\, dt$
In [51]:
ans = int2.doit()
ans
Out[51]:
$\displaystyle \log{\left(\sqrt{t^{2}} – 1 \right)} – \log{\left(\sqrt{t^{2}} + 1 \right)}$

最後に $t$ をもとの $\sqrt{x+1}$ に戻してやって…

In [52]:
ans.subs(t, sqrt(x+1))
Out[52]:
$\displaystyle \log{\left(\sqrt{x + 1} – 1 \right)} – \log{\left(\sqrt{x + 1} + 1 \right)}$

SymPy はあいからわず $\log$ の中身の絶対値を省略しています。

例 2

$\displaystyle \int \frac{dx}{\sqrt{x^2+1}}$

これもすぐ integrate() できてしまいます。

In [53]:
integrate(1/sqrt(x**2 + 1), x)
Out[53]:
$\displaystyle \operatorname{asinh}{\left(x \right)}$

$\log$ であらわすと…

In [54]:
_.rewrite(log)
Out[54]:
$\displaystyle \log{\left(x + \sqrt{x^{2} + 1} \right)}$

ヒントに従って,あえてこれを置換積分してみます。$x + \sqrt{x^2 + 1} \equiv t\ (>0)$ とおくと…

In [55]:
int1 = Integral(1/sqrt(x**2 + 1), x)
int1
Out[55]:
$\displaystyle \int \frac{1}{\sqrt{x^{2} + 1}}\, dx$
In [56]:
# t は正であると宣言
t = Symbol('t', positive = True)

int2 = int1.transform(x+sqrt(x**2+1), t)
int2
Out[56]:
$\displaystyle \int \frac{1 – \frac{t^{2} – 1}{2 t^{2}}}{\sqrt{1 + \frac{\left(t^{2} – 1\right)^{2}}{4 t^{2}}}}\, dt$

被積分関数はもっと簡単になりますよねぇ。

In [57]:
# 被積分関数を ft として取り出す
ft = diff(int2, t)
ft.simplify()
Out[57]:
$\displaystyle \frac{t^{2} + 1}{t \sqrt{t^{4} + 2 t^{2} + 1}}$
In [58]:
# 2乗して簡単化して平方根をとる
ft = sqrt(simplify(ft**2))
ft
Out[58]:
$\displaystyle \frac{1}{t}$
In [59]:
ans = integrate(ft, t)
ans
Out[59]:
$\displaystyle \log{\left(t \right)}$

$t$ をもとの変数 $x + \sqrt{x^2 + 1}$ になおすと…

In [60]:
ans.subs(t, x+sqrt(x**2+1))
Out[60]:
$\displaystyle \log{\left(x + \sqrt{x^{2} + 1} \right)}$

例 3

$\displaystyle \int \sqrt{x^2+1} dx$

これも integrate() できてしまいます。

In [61]:
integrate(sqrt(x**2 + 1), x)
Out[61]:
$\displaystyle \frac{x \sqrt{x^{2} + 1}}{2} + \frac{\operatorname{asinh}{\left(x \right)}}{2}$

$\log$ であらわすと…

In [62]:
_.rewrite(log)
Out[62]:
$\displaystyle \frac{x \sqrt{x^{2} + 1}}{2} + \frac{\log{\left(x + \sqrt{x^{2} + 1} \right)}}{2}$

ヒントにしたがって,これをあえて置換積分でやってみる。$x+\sqrt{x^2+1} \equiv t$ とおいて…

In [63]:
int1 = Integral(sqrt(x**2 + 1), x)
int1
Out[63]:
$\displaystyle \int \sqrt{x^{2} + 1}\, dx$
In [64]:
# t は正であると宣言
t = Symbol('t', positive = True)

int2 = int1.transform(x+sqrt(x**2+1), t)
int2.simplify()
Out[64]:
$\displaystyle \int \frac{\left(t^{2} + 1\right) \sqrt{t^{4} + 2 t^{2} + 1}}{4 t^{3}}\, dt$

被積分関数はもっと簡単になりますよねぇ。

In [65]:
# 被積分関数を ft として取り出す
ft = diff(int2.simplify(), t)
ft
Out[65]:
$\displaystyle \frac{\left(t^{2} + 1\right) \sqrt{t^{4} + 2 t^{2} + 1}}{4 t^{3}}$
In [66]:
factor(ft**2)
Out[66]:
$\displaystyle \frac{\left(t^{2} + 1\right)^{4}}{16 t^{6}}$
In [67]:
# 2乗して簡単化して平方根をとる
ft = sqrt(factor(ft**2))
ft.apart()
Out[67]:
$\displaystyle \frac{t}{4} + \frac{1}{2 t} + \frac{1}{4 t^{3}}$
In [68]:
ans = integrate(ft.apart(), t)
Eq(Integral(ft.apart(), t), ans)
Out[68]:
$\displaystyle \int \left(\frac{t}{4} + \frac{1}{2 t} + \frac{1}{4 t^{3}}\right)\, dt = \frac{t^{2}}{8} + \frac{\log{\left(t \right)}}{2} – \frac{1}{8 t^{2}}$

$t$ をもとの変数 $x+\sqrt{x^2+1}$ に戻して…

In [69]:
ans.subs(t, x+sqrt(x**2+1))
Out[69]:
$\displaystyle \frac{\left(x + \sqrt{x^{2} + 1}\right)^{2}}{8} + \frac{\log{\left(x + \sqrt{x^{2} + 1} \right)}}{2} – \frac{1}{8 \left(x + \sqrt{x^{2} + 1}\right)^{2}}$

… う〜ん。なかなかまとめてくれませんねぇ。

練習問題 1

$\displaystyle \int \frac{dx}{x \sqrt{x-1}}$

直接 integrate() すると…

In [70]:
integrate(1/(x*sqrt(x-1)), x)
Out[70]:
$\displaystyle \begin{cases} 2 i \operatorname{acosh}{\left(\frac{1}{\sqrt{x}} \right)} & \text{for}\: \frac{1}{\left|{x}\right|} > 1 \\- 2 \operatorname{asin}{\left(\frac{1}{\sqrt{x}} \right)} & \text{otherwise} \end{cases}$

題意から $x>1$ だから,2行目が答えなんだろうけど,積分定数分の不定性をのぞいて
$\displaystyle 2 \operatorname{acos} \left(\frac{1}{\sqrt{x}}\right)$ と書いたほうがよろしいかと思う。

SymPy, ちょっと残念。

置換積分でやると,$\sqrt{x-1} \equiv t$ とおいて…

In [71]:
int1 = Integral(1/(x*sqrt(x-1)), x)
int1
Out[71]:
$\displaystyle \int \frac{1}{x \sqrt{x – 1}}\, dx$
In [72]:
int2 = int1.transform(sqrt(x-1), t)
int2
Out[72]:
$\displaystyle \int \frac{2}{t^{2} + 1}\, dt$
In [73]:
ans = int2.doit()
ans
Out[73]:
$\displaystyle 2 \operatorname{atan}{\left(t \right)}$
In [74]:
ans.subs(t, sqrt(x-1))
Out[74]:
$\displaystyle 2 \operatorname{atan}{\left(\sqrt{x – 1} \right)}$

この答えが直接 integrate() で求めた $\displaystyle 2 \operatorname{acos}{\left(\frac{1}{\sqrt{x}}\right)}$ と同等,すなわち

$$\tan^{-1} \sqrt{x-1} = \cos^{-1} \frac{1}{\sqrt{x}}$$

であることを確認してみる。$\tan^{-1}$ の式を $\cos^{-1}$ を使って書き直すと…

In [75]:
Eq(atan(sqrt(x-1)), 
   atan(sqrt(x-1)).rewrite(acos))
Out[75]:
$\displaystyle \operatorname{atan}{\left(\sqrt{x – 1} \right)} = \operatorname{acos}{\left(\frac{1}{\sqrt{x}} \right)}$
In [76]:
Eq(acos(1/sqrt(x)), 
   acos(1/sqrt(x)).rewrite(atan))
Out[76]:
$\displaystyle \operatorname{acos}{\left(\frac{1}{\sqrt{x}} \right)} = \operatorname{atan}{\left(\sqrt{x} \sqrt{1 – \frac{1}{x}} \right)}$

SymPy は平方根同士のかけ算が苦手のようである。

$$\sqrt{x} \sqrt{1 – \frac{1}{{x}}} = \sqrt{x-1}$$

だよねぇ。

練習問題 2

$\displaystyle \int \frac{\sqrt{x}}{\sqrt{1-x}} dx$

In [77]:
integrate(sqrt(x)/sqrt(1-x), x)
Out[77]:
$\displaystyle \begin{cases} – i \sqrt{x} \sqrt{x – 1} – i \operatorname{acosh}{\left(\sqrt{x} \right)} & \text{for}\: \left|{x}\right| > 1 \\\frac{x^{\frac{3}{2}}}{\sqrt{1 – x}} – \frac{\sqrt{x}}{\sqrt{1 – x}} + \operatorname{asin}{\left(\sqrt{x} \right)} & \text{otherwise} \end{cases}$

題意から $0 \leq x < 1$ なので2行目が答えなんだけど,これも置換積分で別途計算してみる。

$\displaystyle \frac{\sqrt{x}}{\sqrt{1-x}} \equiv t$ とおいて…

In [78]:
int1 = Integral(sqrt(x)/sqrt(1-x), x)
int1
Out[78]:
$\displaystyle \int \frac{\sqrt{x}}{\sqrt{1 – x}}\, dx$
In [79]:
t = Symbol('t', positive = True)

int2 = int1.transform(sqrt(x)/sqrt(1-x), t)
int2
Out[79]:
$\displaystyle \int \frac{t \left(- \frac{2 t^{3}}{\left(t^{2} + 1\right)^{2}} + \frac{2 t}{t^{2} + 1}\right)}{\sqrt{t^{2} + 1} \sqrt{- \frac{t^{2}}{t^{2} + 1} + 1}}\, dt$
In [80]:
# 被積分関数を ft としてとる
ft = diff(int2, t)
# 2乗して簡単化して平方根をとる
ft = sqrt((ft**2).simplify())
ft
Out[80]:
$\displaystyle \frac{2 t^{2}}{\left(t^{2} + 1\right)^{2}}$
In [81]:
ans = integrate(ft, t)
ans
Out[81]:
$\displaystyle – \frac{2 t}{2 t^{2} + 2} + \operatorname{atan}{\left(t \right)}$
In [82]:
ans.subs(t, sqrt(x)/sqrt(1-x)).simplify()
Out[82]:
$\displaystyle \frac{\sqrt{x} \left(x – 1\right) + \sqrt{1 – x} \operatorname{atan}{\left(\frac{\sqrt{x}}{\sqrt{1 – x}} \right)}}{\sqrt{1 – x}}$

人間の目では,

$\displaystyle \operatorname{atan}{\left(\frac{\sqrt{x}}{\sqrt{1 – x}} \right)} – \sqrt{x}\sqrt{1-x}$

としたほうが見やすいかも。

練習問題 3

$\displaystyle \int \frac{\sqrt{x}}{\sqrt{1-x^3}} dx$

In [83]:
integrate(sqrt(x)/sqrt(1-x**3), x)
Out[83]:
$\displaystyle \begin{cases} – \frac{2 i \operatorname{acosh}{\left(x^{\frac{3}{2}} \right)}}{3} & \text{for}\: \left|{x^{3}}\right| > 1 \\\frac{2 \operatorname{asin}{\left(x^{\frac{3}{2}} \right)}}{3} & \text{otherwise} \end{cases}$

題意から $|x^3| < 1$ なので2行目が答え。

ちなみに,$y = \sin^{-1} x^{3/2}$ とおくと,

\begin{eqnarray}
x^{\frac{3}{2}} &=& \sin y \\
\tan y &=& \frac{\sin y}{\cos y} \\
&=& \frac{\sin y}{\sqrt{1-\sin^2 y}} \\
&=& \frac{x^{\frac{3}{2}}}{\sqrt{1-x^{3}}} \\
\therefore\ \ y &=& \tan^{-1} \frac{\sqrt{x^3}}{\sqrt{1-x^{3}}}
\end{eqnarray}

練習問題 4

$\displaystyle \int \frac{1}{\left(a^2 +x^2\right)^{\frac{3}{2}}} dx$

In [84]:
integrate(1/sqrt(a**2 + x**2)**3, x)
Out[84]:
$\displaystyle \frac{x}{a^{2} \sqrt{a^{2} + x^{2}}}$

広義の積分

SymPy では無限大 $\infty$ は oo (アルファベットのオーの小文字2つ) です。

練習問題 1

$\displaystyle \int_{-\infty}^{\infty} \frac{1}{(a^2 + x^2)^{\frac{3}{2}}} dx$

In [85]:
a = Symbol('a', positive = True)

Eq(Integral(1/sqrt(a**2 + x**2)**3, (x, -oo, oo)),
   Integral(1/sqrt(a**2 + x**2)**3, (x, -oo, oo)).doit())
Out[85]:
$\displaystyle \int\limits_{-\infty}^{\infty} \frac{1}{\left(a^{2} + x^{2}\right)^{\frac{3}{2}}}\, dx = \frac{2}{a^{2}}$

練習問題 2

$\displaystyle \int_{-\infty}^{\infty} \frac{1}{a^2 + x^2} dx$

In [86]:
Eq(Integral(1/(a**2+x**2), (x, -oo, oo)),
   Integral(1/(a**2+x**2), (x, -oo, oo)).doit())
Out[86]:
$\displaystyle \int\limits_{-\infty}^{\infty} \frac{1}{a^{2} + x^{2}}\, dx = \frac{\pi}{a}$

いくつかの応用

いくつかの応用の項の例題。

円の面積

$\displaystyle x^2 + y^2 = r^2$ より $y = \sqrt{r^2 – x^2}$(円の上半分)。 ここで $r$ は円の半径で $r > 0$

円の面積 $S$ は,$y = \sqrt{r^2 – x^2}$ と $x$ 軸で囲まれる部分の面積を求めて2倍すればよい。

$\displaystyle S = 2 \int_{-r}^r y\, dx$

In [87]:
r = Symbol('r', positive = True)

y = sqrt(r**2 - x**2)

Eq(Integral(2*y, (x, -r, r)), 
   Integral(2*y, (x, -r, r)).doit())
Out[87]:
$\displaystyle \int\limits_{- r}^{r} 2 \sqrt{r^{2} – x^{2}}\, dx = \pi r^{2}$

円周

$\displaystyle L = 2 \int_{-r}^r \sqrt{1 + \left(\frac{dy}{dx}\right)^2}\, dx$

In [88]:
dydx = diff(y, x)
dydx
Out[88]:
$\displaystyle – \frac{x}{\sqrt{r^{2} – x^{2}}}$
In [89]:
Eq(2*Integral(sqrt(1+dydx**2), (x, -r, r)),
   2*Integral(sqrt(1+dydx**2), (x, -r, r)).doit())
Out[89]:
$\displaystyle 2 \int\limits_{- r}^{r} \sqrt{\frac{x^{2}}{r^{2} – x^{2}} + 1}\, dx = 2 \pi r$

球の表面積

$\displaystyle S = \int_{-r}^r 2\pi y \sqrt{1 + \left(\frac{dy}{dx}\right)^2}\, dx$

SymPy は平方根があるこの手の積分が苦手らしいので,被積分関数を簡単化してから計算する。

In [90]:
int1 = Integral(2*pi*y*sqrt(1+diff(y,x)**2), x)
int1
Out[90]:
$\displaystyle \int 2 \pi \sqrt{r^{2} – x^{2}} \sqrt{\frac{x^{2}}{r^{2} – x^{2}} + 1}\, dx$
In [91]:
fx = diff(int1, x)
fx
Out[91]:
$\displaystyle 2 \pi \sqrt{r^{2} – x^{2}} \sqrt{\frac{x^{2}}{r^{2} – x^{2}} + 1}$
In [92]:
# 被積分関数を2乗して簡単化して平方根をとる
fx = sqrt((fx**2).simplify())
fx
Out[92]:
$\displaystyle 2 \pi r$
In [93]:
integrate(fx, (x, -r, r))
Out[93]:
$\displaystyle 4 \pi r^{2}$

球の体積

$\displaystyle V = \int_{-r}^r \pi y^2\, dx$

In [94]:
integrate(pi*y**2, (x, -r, r))
Out[94]:
$\displaystyle \frac{4 \pi r^{3}}{3}$