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