Scientific numbers

Scientific numbers are represented by multiplying the mantissa (significant part) by the exponent. This number class is the most used.

Built-in operators and functions

Arithmetic operations:

- addition and unary plus

- subtraction and unary minus

- multiplication

- division

Arithmetic functions:

- exponentiation

- square root

- Nth root

- summation

- production

- integral

- differential

- factorial

Functions:

"ln" - natural logarithm

"log" - logarithm

"abs" - absolute value

"int" - integral part

"fract" - fraction part

"round" - rounding up or down to the nearest integer

Trigonometric functions:

"sin" - sine

"cos" - cosine

"tan" - tangent

"cot" - cotangent

"sec" - secant

"csc" - cosecant

"arcsin" - inverse sine

"arccos" - inverse cosine

"arctan" - inverse tangent

"arccot" - inverse cotangent

"arcsec" - inverse secant

"arccsc" - inverse cosecant

Hyperbolic functions:

"sinh" - hyperbolic sine

"cosh" - hyperbolic cosine

"tanh" - hyperbolic tangent

"coth" - hyperbolic cotangent

"sech" - hyperbolic secant

"csch" - hyperbolic cosecant

"arsinh" - area hyperbolic sine

"arcosh" - area hyperbolic cosine

"artanh" - area hyperbolic tangent

"arcoth" - area hyperbolic cotangent

"arsech" - area hyperbolic secant

"arcsch" - area hyperbolic cosecant