学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第4章(1次方程式, 2次方程式 )、4(解の公式、解の虚実)の問16の解答を求めてみる。
の場合、
よって、
(1) と同様
コード
#!/usr/bin/env python3
from unittest import TestCase, main
from sympy import symbols, sqrt
print('16.')
class MyTestCase(TestCase):
def test1(self):
a = symbols('a', positive=True)
b = symbols('b', negative=True)
self.assertEqual(sqrt(a) * sqrt(b), sqrt(a * b))
def test2(self):
a = symbols('a', negative=True)
b = symbols('b', positive=True)
self.assertEqual(sqrt(a) * sqrt(b), sqrt(a * b))
def test3(self):
a, b = symbols('a, b', negative=True)
self.assertEqual((sqrt(a) * sqrt(b)).simplify(), -
sqrt(a * b).simplify())
if __name__ == "__main__":
main()
入出力結果(Zsh、PowerShell、Terminal、Jupyter(IPython))
% ./sample16.py -v
16.
test1 (__main__.MyTestCase) ... ok
test2 (__main__.MyTestCase) ... ok
test3 (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 3 tests in 0.361s
OK
%
0 コメント:
コメントを投稿