学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
ラング線形代数学(上) (ちくま学現文庫)(S.ラング (著)、芹沢 正三 (翻訳)、筑摩書房)の7章(スカラー積と直交性)、5(行列の階数と1次方程式)、練習問題1の解答を求めてみる。
よって階数は2。
2
2
1
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import Matrix
print('1.')
class Test(TestCase):
def test(self):
ms = [
Matrix([2, 1, 3, 7, 2, 0]).reshape(2, 3),
Matrix([-1, 2, -2, 3, 4, -5]).reshape(2, 3),
Matrix([1, 2, 7, 2, 4, -1]).reshape(2, 3),
Matrix([1, 2, -3, -1, -2, 3, 4, 8, -12, 0, 0, 0]).reshape(4, 3)
]
ranks = [2, 2, 2, 1]
for i, (m, r) in enumerate(zip(ms, ranks)):
print(f'({chr(ord("a") + i)})')
self.assertEqual(m.rank(), r)
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample1.py -v
1.
test (__main__.Test) ... (a)
(b)
(c)
(d)
ok
----------------------------------------------------------------------
Ran 1 test in 0.032s
OK
%
0 コメント:
コメントを投稿