2020年4月15日水曜日

学習環境

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


  1. L = D - I f = D f - f

    また、

    D t e x = d dx t e x = t e x

    よって、 線形写像 L の核は

    t e x | t

    である。

コード

#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, Derivative, exp, plot

print('8.')

t, x = symbols('t, x')
f = t * exp(x)


class TestDerivativeKernel(TestCase):
    def test(self):
        self.assertEqual(Derivative(f, x, 1).doit() - f, 0)


g = f.subs({t: 2})
dgdx = Derivative(g, x, 1).doit()
h = dgdx - g
p = plot(g, dgdx, h, 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('sample9.png')

if __name__ == "__main__":
    main()

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

% ./sample9.py -v
8.
test (__main__.TestDerivativeKernel) ... ok

----------------------------------------------------------------------
Ran 1 test in 0.002s

OK
%

0 コメント:

コメントを投稿