学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
ラング線形代数学(上) (ちくま学現文庫)(S.ラング (著)、芹沢 正三 (翻訳)、筑摩書房)の4章(線形写像)、1(写像)、練習問題7の解答を求めてみる。
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import Matrix
print('7.')
A = Matrix([1, 1, -1, 3])
class MyTestCase(TestCase):
def test(self):
ts = [(1, 1, 0, -1),
(2, 3, -1, 1)]
xs = [1, 11]
for i, (t, x) in enumerate(zip(ts, xs)):
print(f'({chr(ord("a") + i)})')
self.assertEqual(A.dot(Matrix(t)) + 2, x)
if __name__ == '__main__':
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample7.py
7.
(a)
(b)
.
----------------------------------------------------------------------
Ran 1 test in 0.041s
OK
%
0 コメント:
コメントを投稿