sqrt(100)
returns 10
4^2
returns 16
4^3
returns 64
4^6
returns 4,096
pi(4)
returns 12.5663706144
log(7.38905)
returns 2
ln(7.38905)
returns 2
exp(2)
returns 7.39
if(variable1>5, 1, 0)
returns 1 if variable1 is
greater than 5, and returns 0 if variable1 is less than or equal to 5
and(variableA>5, variableB >7)
returns 1 if
variableA is greater than 5 and variableB is greater than 7; returns 0 if
either variableA is less than or equal to 5, or if variableB is less than or
equal to 7
or(variableA>5, variableB >7)
returns 1 if
variableA is greater than 5, or variableB is greater than 7, or both are true;
returns 0 if both variableA is less than or equal to 5, and variableB is less
than or equal to 7
not(variableA>5)
returns 1 if variableA is less
than or equal to 5; returns 0 if variableA is greater than 5
abs(-5)
returns 5
not(variableA>5)
returns 1 if variableA is less
than or equal to 5; returns 0 if variableA is greater than 5
min(2, 4, 6, 8, 10)
returns 2
round(103.058, 2)
returns 103.06;
round(103.058, -2)
returns 100;
round(103.058)
returns 103
degrees(1.5)
returns 86º
radians(68)
returns 1.19 radians