Math
Math symbols allow you to design some mathematical tasks.
Content
| Name | Use | Symbol |
|---|---|---|
| Addition | Used to add numbers | |
| Subtraction | Used to subtract numbers | |
| Multiply | Used to multiply numbers | |
| Division | Used to divide numbers | / |
| Power | Used 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

