2019年9月13日金曜日

学習環境

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


  1. sin θ = 2 sin θ 2 cos θ 2 cos θ 2 = sin θ 2 sin θ 2 sin θ 2 = 2 sin θ 2 2 cos θ 2 2 cos θ 2 2 = sin θ 2 2 sin θ 2 2 cos θ 2 n = sin θ 2 n - 1 2 sin θ 2 n

    よって、

    cos θ 2 cos θ 2 2 cos θ 2 3 cos θ 2 n = sin θ 2 n sin θ 2 n = sin θ θ · θ 2 n sin θ 2 n = sin θ θ · θ 2 n sin θ 2 n

    ゆえに、

    n = 1 cos θ 2 n = sin θ θ

コード

Python 3

#!/usr/bin/env python3
from sympy import pprint, symbols, product, sin, cos, oo, plot
import matplotlib.pyplot as plt

print('2.')

n, theta = symbols('n, θ')
f = cos(theta / 2 ** n)
p = product(f, (n, 1, oo))

f1 = f.subs({theta: 1})
p1 = product(f1, (n, 1, oo))
for o in [p, p1]:
    pprint(o)
    print()

p = plot(sin(1),
         show=False,
         legend=False)

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('sample2.png')


def h(m):
    return product(f1, (n, 1, m))


ms = range(1, 11)
plt.plot(ms, [h(m) for m in ms])
plt.legend(['∏ cos θ/2^n'])
plt.savefig('sample2.png')

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

C:\Users\...>py sample2.py
2.
  ∞              
─┬──┬─           
 │  │     ⎛ -n  ⎞
 │  │  cos⎝2  ⋅θ⎠
 │  │            
n = 1            

  ∞            
─┬──┬─         
 │  │     ⎛ -n⎞
 │  │  cos⎝2  ⎠
 │  │          
n = 1          


C:\Users\...>

0 コメント:

コメントを投稿