.TH EXP 2 .SH NAME exp, log, log10, pow, pow10, sqrt \- exponential, logarithm, power, square root .SH SYNOPSIS .nf .B double exp(double x) .PP .B double log(double x) .PP .B double log10(double x) .PP .B double pow(double x, double y) .PP .B double pow10(int n) .PP .B double sqrt(double x) .fi .SH DESCRIPTION .I Exp returns the exponential function of .I x. .PP .I Log returns the natural logarithm of .IR x ; .I log10 returns the base 10 logarithm. .PP .I Pow returns .if t .I x\u\s8y\s10\d .if n x^y, and .I pow10 returns .if t .I 10\u\s8n\s10\d .if n 10^n as a double. .PP .I Sqrt returns the square root of .I x. .SH SEE ALSO .IR hypot (2), .IR sinh (2), .IR intro (2)