【Python】三角関数の加法定理 sin編

■三角関数の加法定理

すぐにわかる三角比の値、θ = 30°、45°、60°を使用して、
15°や105°の値を求めることが可能となる。

★今回はsin編のみ紹介

■三角関数の加法定理 sinの公式

sinの加法定理は以下の通り。

■例題

問題1
sin(105°)を加法定理を使用して求める。

問題2
sin(15°)を加法定理を使用して求める。

【特記事項】
ちなみに、pythonでは、
加法定理を使用しなくても、そのままsin(105°)、sin(15°)を求めることはできる。

■サンプルコード

▼問題1

# -*- Coding:UTF-8 -*-
import math

# 度数を変数に格納
degree = 105
tmp_degree1 = 45
tmp_degree2 = 60

# 度数をラジアンに変換
radian = math.radians(degree)
tmp_radian1 = math.radians(tmp_degree1)
tmp_radian2 = math.radians(tmp_degree2)

# 加法定理 sin(α+β)
result = math.sin(radian)

# 答え(少数第2位で表示)
print('sin(105°) = ', round(result, 2))

# 加法定理 sinαcosβ + cosαsinβ
result = math.sin(tmp_radian1) * math.cos(tmp_radian2) + math.cos(tmp_radian1) * math.sin(tmp_radian2)

# 答え(少数第2位で表示)
print('sin45°cos60° + cos45°sin60° = ', round(result, 2))

▼問題2

# -*- Coding:UTF-8 -*-
import math

# 度数を変数に格納
degree = 15
tmp_degree1 = 45
tmp_degree2 = 30

# 度数をラジアンに変換
radian = math.radians(degree)
tmp_radian1 = math.radians(tmp_degree1)
tmp_radian2 = math.radians(tmp_degree2)

# 加法定理 sin(α-β)
result = math.sin(radian)

# 答え(少数第2位で表示)
print('sin(15°) = ', round(result, 2))

# 加法定理 sinαcosβ - cosαsinβ
result = math.sin(tmp_radian1) * math.cos(tmp_radian2) - math.cos(tmp_radian1) * math.sin(tmp_radian2)

# 答え(少数第2位で表示)
print('sin45°cos30° - cos45°sin30° = ', round(result, 2))

■実行結果

▼問題1

sin(105°) =  0.97
sin45°cos60° + cos45°sin60° =  0.97

▼問題2

sin(15°) =  0.26
sin45°cos30° - cos45°sin30° =  0.26
タイトルとURLをコピーしました