{| class="wikitable"
| style="width:150px;" !scope="col"| Function Name / Syntax| style="width:200px;" !scope="col"| Type
| style="width:350px;" !scope="col"| Description
| style="width:350px;" !scope="col"| Notes
|-
| floor(x)
| Std. Python function
| Floor function
| Nearest integer <= x
|-
| power(x,y)
| Std. Python function
| Power function
| x^**y
|-
| sqrt(x)
| Std. Python function
| Square root function
| x^(1/2)
|-
| exp(x)
| Std. Python function
| Exponential function
| e^**x|-| log(x)| Std. Python function| Natural logarithm function| -
|-
| log10(x)
| Std. Python function
| Base 10 logarithm function
| ln(x)/ln(10)
|-
| db(x)
| Decibel function
| 10*log10(x)
|-
| ln(x)
| Natural logarithm function
| -
|-
| log(x,a)
| Std. Python function
| Base a logarithm function
| ln(x)/ln(a)
|-
| rms(x)
| Root mean square function
| -
|-
| abs(x)
| Std. Python function
| Absolute value function
| x if x>0, -x if x<0
|-
| sin(x)
| Std. Python function
| Sine function
| -
|-
| cos(x)
| Std. Python function
| Cosine function
| -
|-
| tan(x)
| Std. Python function
| Tangent function
| -
|-
| sec(x)
| Std. Python function
| Secant function
| -
|-
| csc(x)
| Std. Python function
| Cosecant function
| -
|-
| cot(x)
| Std. Python function
| Cotangent function
| -
|-
| asin(x)
| Std. Python function
| Inverse sine function
| -
|-
| acos(x)
| Std. Python function
| Inverse cosine function
| -
|-
| atan(x)
| Std. Python function
| Inverse tangent function
| -
|-
| asec(x)
| Std. Python function
| Inverse secant function
| -
|-
| acsc(x)
| Std. Python function
| Inverse cosecant function
| -
|-
| acot(x)
| Std. Python function
| Inverse cotangent function
| -
|-
| sinh(x)
| Std. Python function
| Hyperbolic sine function
| -
|-
| cosh(x)
| Std. Python function
| Hyperbolic cosine function
| -
|-
| tanh(x)
| Std. Python function
| Hyperbolic tangent function
| -
|-
| sech(x)
| Std. Python function
| Hyperbolic secant function
| -
|-
| csch(x)
| Std. Python function
| Hyperbolic cosecant function
| -
|-
| coth(x)
| Std. Python function
| Hyperbolic cotangent function
| -
|-
| asinh(x)
| Std. Python function
| Inverse hyperbolic sine function
| -
|-
| acosh(x)
| Std. Python function
| Inverse hyperbolic cosine function
| -
|-
| atanh(x)
| Std. Python function
| Inverse hyperbolic tangent function
| -
|-
| asech(x)
| Std. Python function
| Inverse hyperbolic secant function
| -
|-
| acsch(x)
| Std. Python function
| Inverse hyperbolic cosecant function
| -
|-
| acoth(x)
| Std. Python function
| Inverse hyperbolic cotangent function
| -