Math

5 examples of arithmetic operators with explanations:

1. Addition Example: 0 + 1 = 1
2. Subtraction Example: 100 - 99 = 1
3. Multiplication Example: 2 * 2 = 4
4. Division Example: 5 / 5 = 1
5. Increment Example: 10 incremented by 1 = 11

1. The addition example has a variable of '1' which holds two numbers using the addition operator to output the total of both numbers.
2. The subtraction example uses the subtraction operator to output the value of two numbers within the variable $sub.
3. The multiplication example uses the multiplier operator to output the variable $mult, which multiplies two numbers.
4. To divide two numbers, the division operator was used to output the variable $div.
5. The PHP increment operator was accomplished by increasing the value of the variable $inc by 1. The new value was then assigned to the variable $inc1 in the expression.