SyntaxOperationExample
*Multiplication2x or 2*x
+ –Addition, subtraction2-x or x+2
/Division2/x
^Exponentiationx^2+2x-3 — draw a parabola
x^x —  graph of the function y=x^x
sqrt()Square rootsqrt(x) — square root of x
sqrt(x+5) — square root of x+5
abs()Moduleabs(x+2)
 ln()Natural logarithmln(2x) — natural logarithm of 2x
log
 exp()Exponential (amount e) to a given degree exp(x)e to the power x
 sin()Sine sin(x) — sin of x
 cos()Cosine cos(x) — cosine of x
 tan()Tangent tan(x) — tangent of x
 cot()Cotangent cot(x) – cotangent of x
 min(a,b)Minimummin(x,5) — for x<5 returns x, for x>=5 returns 5
 max(a,b)Maximummax(x,5) — for x<5 returns 5, for x>=5 returns x
 floor()Rounded downfloor(2/x)
 ceil()Rounded upceil(x^2)
pipix*pi
eex*e