2019年11月25日月曜日

学習環境

新装版 数学読本2 (松坂 和夫(著)、岩波書店)の第8章(円の中にひそむ関数 - 三角関数)、8.2(加法定理)、三角関数の諸公式の正接の問26の解答を求めてみる。


  1. 2 n π α 2 n π + π 2 cos 2 α = cos 2 α - sin 2 α = 2 cos 2 α - 1 = 2 9 - 1 = - 7 9 sin 2 α = 1 - cos 2 2 α = 1 - 7 9 2 = 81 - 49 9 2 = 32 9 = 4 2 9 n π α 2 n π + π 4 sin 2 α 2 = 1 - cos α 2 = 1 - 1 3 2 = 1 3 sin α 2 = ± 1 3 cos 2 α 2 = cos α + 1 2 = 1 3 + 1 2 = 2 3 cos α 2 = ± 2 3 = ± 6 3

コード

#!/usr/bin/env python3
from sympy import pprint, symbols, plot, solve, Rational, sin, cos, pi

print('26.')

n = symbols('n', integer=True)
alpha = symbols('α')
alpha0 = [t for t in solve(
    cos(alpha) - Rational(1, 3), alpha) if 0 <= t <= pi / 2][0]

for n in [2, Rational(1, 2)]:
    for f in [sin, cos]:
        t = f(n * alpha0)
        for o in [t, float(t)]:
            pprint(o)
            print()

p = plot(*[f(n * alpha)
           for n in [1, 2, Rational(1, 2)]
           for f in [sin, cos]],
         ylim=(-10, 10),
         legend=True,
         show=False)
colors = ['red', 'green', 'blue', 'brown', 'orange',
          'purple', 'pink', 'gray', 'skyblue', 'yellow']

for s, color in zip(p, colors):
    s.line_color = color

p.show()
p.save(f'sample26.png')

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

% ./sample26.py
26.
sin(2⋅acos(1/3))

0.6285393610547089

cos(2⋅acos(1/3))

-0.7777777777777778

   ⎛acos(1/3)⎞
sin⎜─────────⎟
   ⎝    2    ⎠

0.5773502691896257

   ⎛acos(1/3)⎞
cos⎜─────────⎟
   ⎝    2    ⎠

0.816496580927726

%

0 コメント:

コメントを投稿