2019年12月17日火曜日

学習環境

今日から使える微分方程式 普及版 例題で身につく理系の必須テクニック (ブルーバックス) (飽本 一裕(著)、講談社)の第1章(座頭市の自由気ままな世界旅行 - 微積分のおさらい)の1.2(積分は変化の総決算 - 座頭市の位置は?)のナットクの例題1-3の解答を求めてみる。


  1. 0 π 4 2 sin x 1 + cos x - 2 sin x dx = 0 π 4 2 sin x + 2 sin x cos x - 2 sin x dx = 0 π 4 sin 2 x dx = 1 2 - cos 2 x 0 π 4 = - 1 2 cos π 2 - cos 0 = - 1 2 0 - 1 = 1 2

コード

#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, sin, cos, pi, Rational, Integral, plot

x = symbols('x')
f1 = 2 * sin(x) * (1 + cos(x))
f2 = 2 * sin(x)


class MyTestCase(TestCase):
    def test(self):
        self.assertEqual(
            Integral(f1 - f2, (x, 0, pi / 4)).doit(), Rational(1, 2))


p = plot(f1, f2, f1 - f2,
         (x, -5, 5),
         ylim=(-5, 5),
         legend=True,
         show=False)

colors = ['red', 'green', 'blue', 'brown', 'orange',
          'purple', 'pink', 'gray', 'skyblue', 'yellow']

for o, color in zip(p, colors):
    o.line_color = color

p.show()
p.save('sample3.png')

if __name__ == '__main__':
    main()

入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))

% ./sample3.py -v
test (__main__.MyTestCase) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.194s

OK
%

0 コメント:

コメントを投稿