学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第4章(1次方程式, 2次方程式 )、練習問題13の解答を求めてみる。
2つの複素数を
とおく。
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols
print('13.')
a, b = symbols('a, b', imag=True)
class MyTestCase(TestCase):
def test_add(self):
self.assertEqual((a + b).conjugate(), a.conjugate() + b.conjugate())
def test_mul(self):
self.assertEqual((a * b).conjugate(), a.conjugate() * b.conjugate())
def test_div(self):
self.assertEqual((a / b).conjugate(), a.conjugate() / b.conjugate())
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample13.py -v
13.
test_add (__main__.MyTestCase) ... ok
test_div (__main__.MyTestCase) ... ok
test_mul (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.059s
OK
%
0 コメント:
コメントを投稿