2019年10月28日月曜日

学習環境

新装版 数学読本2 (松坂 和夫(著)、岩波書店) の第8章(円の中にひそむ関数 - 三角関数)、8.1(一般角と三角関数)、正接の問9の解答を求めてみる。


  1. 第2象限の角の場合。

    1 + 4 = 1 cos 2 θ cos 2 θ = 1 5 cos θ = - 1 5 sin 2 θ = 1 - 1 5 = 4 5 sin θ = 2 5

    第4象限の角であるとき。

    cos θ = 1 5 sin θ = - 2 5

コード

Python 3

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

print('9.')

x = symbols('x')
g = sqrt(1 - x ** 2)
p = plot(*[(f, (x, -1, 1)) for f in [g, -g]],
         *[(f, (x, -2, 2)) for f in [-2 * x, 2 / sqrt(5), -2 / sqrt(5)]],
         ylim=(-2, 2),
         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'sample9.png')

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

% ./sample9.py
9.
%

0 コメント:

コメントを投稿