2019年8月26日月曜日

学習環境

解析入門(上) (松坂和夫 数学入門シリーズ 4) (松坂 和夫(著)、岩波書店)の第5章(各種の初等関数)、5.3(三角関数)、問題3の解答を求めてみる。


  1. sin 2 α = sin α + α = sin α cos α + cos α sin α = 2 sin α cos α cos 2 α = cos α + α = cos 2 α - sin 2 α = cos 2 α - 1 - cos 2 α = 2 cos 2 α - 1 = 1 - sin 2 α - sin 2 α = 1 - 2 sin 2 α tan 2 α = tan α + α = tan α + tan α 1 - tan α tan α = 2 tan α 1 - tan 2 α

コード

Python 3

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

print('3.')


theta = symbols('θ')
p = plot(sin(theta), sin(2 * theta),
         cos(theta), cos(2 * theta),
         tan(theta), tan(2 * theta),
         (theta, -5, 5),
         ylim=(-5, 5),
         show=False,
         legend=True)

colors = ['red', 'green', 'blue', 'brown', 'orange',
          'purple', 'pink', 'gray', 'skyblue', 'yellow']

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

p.show()
p.save('sample3.png')

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

C:\Users\...>py sample3.py
3.

C:\Users\...>

0 コメント:

コメントを投稿