Math

Math symbols allow you to design some mathematical tasks.

Content

NameUseSymbol
AdditionUsed to add numbers+
SubtractionUsed to subtract numbers-
MultiplyUsed to multiply numbers*
DivisionUsed to divide numbers/
PowerUsed to take the power of two numbers**

Addition

The plus symbol + is used to add numbers.

{{ 5+5 }}
Output
10.0

Subtraction

The minus symbol - is used to subtract numbers.

{{ 9-3 }}
Output
6.0

Multiply

The asterisk symbol * is used to multiply numbers.

{{ 3*4 }}
Output
12.0

Division

The slash symbol / is used for the division of numbers.

{{ 12/6 }}
Output
2.0

Power

The power of two numbers can be established by using two asterisks **.

{{ 3**2 }}
Output
9.0