学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
ラング線形代数学(上) (ちくま学現文庫)(S.ラング (著)、芹沢 正三 (翻訳)、筑摩書房)の1章(R^nにおけるベクトル)、3(スカラー積)、練習問題4の解答を求めてみる。
垂直ではない。
垂直である。
垂直ではない。
垂直である。
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import Matrix, pi
print('4.')
class MyTestCase(TestCase):
def test(self):
spam = [((1, -1, 1), (2, 1, 5)),
((1, -1, 1), (2, 3, 1)),
((-5, 2, 7), (3, -1, 2)),
((pi, 2, 1), (2, -pi, 0))]
egg = [False, True, False, True]
for (a, b), t in zip(spam, egg):
if t:
self.assertIs(Matrix(a).dot(Matrix(b)) == 0, t)
if __name__ == '__main__':
main()
入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
% ./sample4.py -v
4.
test (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 1 test in 0.001s
OK
%
0 コメント:
コメントを投稿