学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
解析入門 原書第3版 (S.ラング(著)、松坂 和夫(翻訳)、片山 孝次(翻訳)、岩波書店)の第Ⅵ部(多変数の関数)、第17章(ベクトル)、4(ベクトルのノルム)の練習問題2の解答を求めてみる。
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import Matrix, pi, sqrt
print('2.')
class MyTestCase(TestCase):
def test(self):
spam = [(-1, 1),
(0, 4),
(-1, 1, 1),
(-1, 3, -4),
(2 * pi, -3, 7),
(pi, 3, -1)]
egg = [2, 16, 3, 26, 4 * pi ** 2 + 58, pi ** 2 + 10]
for s, t in zip(spam, egg):
self.assertEqual(Matrix(s).norm(), sqrt(t))
if __name__ == '__main__':
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample2.py -v
2.
test (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 1 test in 0.071s
OK
%
0 コメント:
コメントを投稿