平方根、3乗根、累乗根の計算
n乗根は1/n乗する。
平方根
python
>>> 10**(1/2)
3.1622776601683795
>>> 4**(1/2)
2.0
>>> 2**(1/2)
1.4142135623730951
Googleで計算
$\sqrt{6}$
参考:Writing Mathematic Fomulars in Markdown
CASIOの高精度計算サイトで計算
$\sqrt{6}$
参考:高精度計算サイト
3乗根
python
>>> 10**(1/3)
2.154434690031884
*以下サイトでは複素数の平方根を求める場合はcmath.sqrt()を使う方法が紹介されている。
Python, complex型で複素数を扱う(絶対値、偏角、極座標変換など)