学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windows アプリ)
- iPad
- MyScript Nebo - MyScript(iPad アプリ(iOS))
- 参考書籍
代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第1章(実数)、練習問題9の解答を求めてみる。
コード
Python 3
#!/usr/bin/env python3 from sympy import symbols, pprint, sqrt from unittest import TestCase, main print('9.') class MyTest(TestCase): def setUp(self): pass def tearDown(self): self.assertEqual(1 / (1 + sqrt(2) + sqrt(3)), (2 + sqrt(2) - sqrt(6)) / 4) if __name__ == '__main__': main()
入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
% ./sample9.py 9. ---------------------------------------------------------------------- Ran 0 tests in 0.000s OK %
0 コメント:
コメントを投稿