学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windowsアプリ)
- iPad
- MyScript Nebo - MyScript(iPadアプリ(iOS))
- 参考書籍
新装版 数学読本2 (松坂 和夫(著)、岩波書店)の第8章(円の中にひそむ関数 - 三角関数)、8.2(加法定理)、正接の加法定理の問18の解答を求めてみる。
コード
#!/usr/bin/env python3
import math
from unittest import TestCase, main
from sympy import pprint, symbols, tan, sqrt
print('18.')
class MyTestCase(TestCase):
def test1(self):
self.assertAlmostEqual(tan(math.radians(15)), float(2 - sqrt(3)))
def test2(self):
self.assertAlmostEqual(tan(math.radians(105)), float(-2 - sqrt(3)))
if __name__ == '__main__':
main()
入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
% ./sample18.py -v
18.
test1 (__main__.MyTestCase) ... ok
test2 (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 2 tests in 0.004s
OK
%
0 コメント:
コメントを投稿