学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第2章(整式の計算)、4(整式の除法)の問17の解答を求めてみる。
コード
#!/usr/bin/env python3
from sympy import symbols, pprint
from unittest import TestCase, main
print('17.')
x = symbols('x')
class MyTest(TestCase):
def test(self):
spam = [(2 * x ** 2 + 7 * x - 4, 2 * x - 1),
(x ** 3 - 38 * x - 12, x + 6),
(x ** 4 + x ** 2 + 1, x ** 2 - x + 1),
(6 * x ** 4 + 3 * x ** 3 + 2 * x ** 2 - 2 * x - 4, 2 * x ** 2 + x + 2)]
egg = [x + 4,
x ** 2 - 6 * x - 2,
x ** 2 + x + 1,
3 * x ** 2 - 2]
for (num, den), t in zip(spam, egg):
self.assertEqual((num / den).simplify(), t)
if __name__ == '__main__':
main()
入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
% ./sample17.py -v
17.
test (__main__.MyTest) ... ok
----------------------------------------------------------------------
Ran 1 test in 0.322s
OK
%
0 コメント:
コメントを投稿