| Functions/const./operators | Example | Interpretation |
|---|---|---|
| + | X+2 | addition |
| - | X-2 | subtraction |
| * | X*2 | multiplication |
| / | X/2 | division |
| ^ | X^2 | power X2 |
| ( ) | 5*(X+2) | braces (grouping) |
| . | 2.536 | decimal separator |
| PI | PI | constant 3.141.. |
| e or EXP | e^x or EXP(X) | e = constant 2.718.. |
| E | 2.5E-2 | 2.5*10-2 |
| X | 2*X | variable |
| SIN | SIN(X) | sine function |
| COS | COS(X) | cosine function |
| TAN | TAN(X) | tangent function |
| ASIN | ASIN(X) | arc sine function (result expressed between -1/2 and 1/2 PI or -90 and 90 Deg) |
| ACOS | ACOS(X) | arc cosine function (result expressed between 0 and PI or 0 and 180 Deg) |
| ATAN | ATAN(X) | arc tangent function (result expressed between -1/2 and 1/2 or -90 and 90 Deg) |
| SINH | SINH(X) | hyperbolic sine of X |
| COSH | COSH(X) | hyperbolic cosine of X |
| TANH | TANH(X) | hyperbolic tangent of X |
| RAD | RAD(180) | Convert from degrees to radians |
| DEG | DEG(PI) | Convert from radians to degrees |
| EXP | EXP(X) | natural exponential ex |
| LN | LN(X) | natural logarithm |
| 10^X | 10^(X) | 10-pow. function 10x |
| LOG | LOG(X) | logarithm to base 10 |
| SQRT | SQRT(X) | square root |
| ABS | ABS(-2.43) | absolute value |
| RND | RND(10) | random number |
| MCALC | MCALC(CaSO4) | Molecular Calculator function (Arg. by ',' not legal) |
| CLR | clear all text | |
| _<-DEL | backward delete |