学習環境
- Surface Go、タイプ カバー、ペン(端末)
 - Windows 10 Pro (OS)
 - Nebo(Windows アプリ)
 - iPad Pro + Apple Pencil
 - MyScript Nebo - MyScript(iPad アプリ(iOS))
 - 参考書籍
 
解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第3部(積分)、第13章(積分の応用)、補充問題、曲線の長さの練習問題16の解答を求めてみる。
コード
Python 3
#!/usr/bin/env python3
from sympy import pprint, symbols, Integral, Derivative, plot, sqrt, cos, sin
from sympy import pi
from sympy.plotting import plot_parametric
theta = symbols('θ')
r = 3 * cos(theta)
x = r * cos(theta)
y = r * sin(theta)
I = Integral(sqrt(r ** 2 + Derivative(r, theta, 1) ** 2), (theta, 0, pi / 4))
for o in [I, I.doit()]:
    pprint(o.simplify())
    print()
p = plot_parametric((x, y, (theta, -pi / 2, 0)),
                    (x, y, (theta, 0, pi / 4)),
                    (x, y, (theta, pi / 4, pi / 2)),
                    show=False)
colors = ['red', 'green', 'blue']
for i, color in enumerate(colors):
    p[i].line_color = color
p.save('sample16.png')
入出力結果(cmd(コマンドプロンプト)、Terminal、Jupyter(IPython))
$ python3 sample16.py π ─ 4 ⌠ ⎮ _____________________________ ⎮ ╱ 2 ⎮ ╱ 2 ⎛d ⎞ ⎮ ╱ 9⋅cos (θ) + ⎜──(3⋅cos(θ))⎟ dθ ⎮ ╲╱ ⎝dθ ⎠ ⌡ 0 3⋅π ─── 4 $
0 コメント:
コメントを投稿