sin・cos・tan

記事の内容

sin

sinは、サインを表します。

sinの説明図
// 180(度) = π(ラジアン) 
// Math.PI / 6 = 30°
console.log('sin(30°) : ' + Math.sin(Math.PI / 6));
30°の三角形の図
出力結果

sin(30°) : 0.49999999999999994

cos

cosは、コサインを表します。

cosの説明図
// 180(度) = π(ラジアン)
// Math.PI/3 = 60°
console.log('cos(60°) : ' + Math.cos(Math.PI / 3));
60°の三角形
出力結果

cos(60°) : 0.5000000000000001

tan

tanは、タンジェントを表します。

tanの説明図
// 180(度) = π(ラジアン) 
// Math.PI / 4 = 45°
console.log('tan(45°) : ' + Math.tan(Math.PI / 4));
45°の三角形の図
出力結果

tan(45°) : 0.9999999999999999

ラジアンと角度の関係

ラジアンとは、円弧の長さを半径で割った値になります。

ラジアンの説明図

ちなみに、360°は2π[rad]が成り立ち1°はπ/180[rad]になります。

円弧と角度についての説明図
角度表の図
角度表
記事の内容
閉じる