Mathematical operators can be used for specifying simple arithmetic formulas when creating new fields.
| Division | Usage: / |
| Addition | Usage: + |
| Multiplication | Usage: * |
| Subtraction | Usage: - |
| Modulo |
Usage: N % M Modulo operation. Returns the remainder of N divided by M. See also the MOD function. |
| Exponentiation |
Usage: X ^ Y Returns X raised to the Y power. |