2019年10月5日土曜日

学習環境

代数への出発 (新装版 数学入門シリーズ) (松坂 和夫(著)、岩波書店)の第1章(実数)、5(平方根を含む式の計算)、問17の解答を求めてみる。


  1. 2 3 - 7 = 2 3 + 7 9 - 7 = 3 + 7 3 + 2.6458 = 5.6458

コード

Python 3

#!/usr/bin/env python3
from sympy import sqrt
from unittest import TestCase, main

print('17.')


class MyTest(TestCase):
    def setUp(self):
        pass

    def tearDown(self):
        pass

    def test(self):
        self.assertAlmostEqual(float(2 / (3 - sqrt(7))), 5.6458, places=4)


if __name__ == '__main__':
    main()

入出力結果(Bash、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))

$ ./sample17.py
17.
.
----------------------------------------------------------------------
Ran 1 test in 0.002s

OK
$ 

0 コメント:

コメントを投稿