Math
Math symbols allow you to design some mathematical tasks.
Content
Name | Use | Symbol |
---|---|---|
Used to add numbers | ||
Used to subtract numbers | ||
Used to multiply numbers | ||
Used to divide numbers | / | |
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
Updated 4 months ago