Simple number calculations

Use simple number function (addition, subtraction, multiplication, and division) to calculate numerical results.

*

Multiplication; returns the result of multiplying two numbers.

3 * 2 = 6

price * taxrate

+

Addition; returns the result of adding two numbers.

1 + 2 = 3

price + shipping

-

Subtraction; returns the result of subtracting the second number from the first.

3 - 2 = 1

revenue - tax

/

Division; returns the result of dividing the first number by the second.

6 / 3 = 2

markup / retail price