学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
ラング線形代数学(上) (ちくま学現文庫)(S.ラング (著)、芹沢 正三 (翻訳)、筑摩書房)の4章(線形写像)、5(線形写像の合成)、練習問題8の解答を求めてみる。
とする。
このとき、
A の核は
なので、
また、 B の核は
なので、
よって、 AB の核もまた
である。
(証明終)
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, solve, Matrix
print('8.')
x, y = symbols('x, y', real=True)
f = Matrix([2 * x, y])
g = Matrix([y, x])
h = g.subs({x: f})
zero = {x: 0, y: 0}
class TestKernel(TestCase):
def test_f(self):
self.assertEqual(solve(f), zero)
def test_g(self):
self.assertEqual(solve(g), zero)
def test_h(self):
self.assertEqual(solve(h), zero)
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample8.py -v
8.
test_f (__main__.TestKernel) ... ok
test_g (__main__.TestKernel) ... ok
test_h (__main__.TestKernel) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.007s
OK
%
0 コメント:
コメントを投稿