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