学習環境
- Surface
- Windows 10 Pro (OS)
- Nebo(Windowsアプリ)
- iPad
- MyScript Nebo - MyScript(iPadアプリ(iOS))
- 参考書籍
新装版 数学読本2 (松坂 和夫(著)、岩波書店)の第8章(円の中にひそむ関数 - 三角関数)、8.2(加法定理)、正弦・余弦の加法定理の問16の解答を求めてみる。
コード
#!/usr/bin/env python3
import math
from unittest import TestCase, main
from sympy import pprint, symbols, sin, cos, sqrt, Rational
print('16.')
class MyTestCase(TestCase):
def test(self):
angles = [15, 105, 120, 165]
fs = [sin, cos]
results = [(sqrt(6) - sqrt(2)) / 4,
(sqrt(6) + sqrt(2)) / 4,
(sqrt(6) + sqrt(2)) / 4,
(sqrt(2) - sqrt(6)) / 4,
sqrt(3) / 2,
-Rational(1, 2),
(sqrt(6) - sqrt(2)) / 4,
-(sqrt(6) + sqrt(2)) / 4]
for i, angle in enumerate(angles):
for j, f in enumerate(fs):
self.assertAlmostEqual(f(math.radians(angle)),
float(results[2 * i + j]))
if __name__ == '__main__':
main()
入出力結果(Zsh、cmd.exe(コマンドプロンプト)、Terminal、Jupyter(IPython))
% ./sample16.py -v
16.
test (__main__.MyTestCase) ... ok
----------------------------------------------------------------------
Ran 1 test in 0.011s
OK
%
0 コメント:
コメントを投稿