SQRT1_2・SQRT2・sqrt・cbrt・hypot

記事の内容

SQRT1_2

SQRT1_2は、1/2の平方根になります。

SQRT1_2の説明図
console.log('SQRT1_2:' + Math.SQRT1_2);
出力結果

SQRT1_2 : 0.7071067811865476

SQRT2

SQRT2は、2の平方根になります。

SQRT2の説明図
console.log('SQRT2:' + Math.SQRT2);
出力結果

SQRT2 : 1.4142135623730951

sqrt

sqrtは、平方根になります。

sqrtの説明図
console.log('sqrt3:' + Math.sqrt(3));
console.log('sqrt5:' + Math.sqrt(5));
出力結果

sqrt3 : 1.7320508075688772
sqrt5 : 2.23606797749979

cbrt

cbrtは、立方根になります。

cbrtの説明図
console.log('cbrt:' + Math.cbrt(8));
console.log('cbrt:' + Math.cbrt(27));
出力結果

cbrt(8) : 2
cbrt(27) : 3

hypot

hypotは、引数の和の平方根になります。

hypotの説明図
// ルート2
console.log('hypot(1+1):' + Math.hypot(1, 1));
// ルート3
console.log('hypot(1+2):' + Math.hypot(1, 2));
出力結果

hypot(1+1) : 1.4142135623730951
hypot(1+2) : 2.23606797749979

記事の内容
閉じる