2020年3月1日日曜日

学習環境

ラング線形代数学(上) (ちくま学現文庫)(S.ラング (著)、芹沢 正三 (翻訳)、筑摩書房)の4章(線形写像)、1(写像)、練習問題2の解答を求めてみる。



    1. D f x = cos x

    2. D f x = e x

    3. D f x = 1 x

コード

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


print('2.')

x, t = symbols('x, t')
fs = [exp(x), 1 / (1 + x ** 2), cos(x)]
gs = [exp(x) - 1, atan(x), sin(x)]


class MyTestCase(TestCase):
    def test(self):
        for f, g in zip(fs, gs):
            self.assertEqual(Integral(f.subs({x: t}), (t, 0, x)).doit(), g)


p = plot(*fs, *gs,
         ylim=(-10, 10),
         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('sample2.png')

if __name__ == '__main__':
    main()

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

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

----------------------------------------------------------------------
Ran 1 test in 0.086s

OK
%

0 コメント:

コメントを投稿