pow 累乗を求める
#include <math.h> double pow(double x, double y)
x の y 乗を計算します。
sqrt 根(ルート)を求める
#include <math.h> double sqrt(double x)
x の平方根(ルート、1/2 乗)を計算します。
log 対数を求める
#include <math.h> double log(double x)
x の自然対数(底 e はおよそ 2.71828)を求めます。底が 10 の対数を求める log10() や、2 の log2() もあります。
exp 指数を求める
#include <math.h> double sqrt(double x)
e(近似値2.718282)の x 乗を求める。log() の逆関数。