1
Part 0 · Lesson 1

Signed Number Arithmetic.

Adding, subtracting, multiplying, dividing positives and negatives.

Why this matters

Every math topic above this — algebra, calculus, linear algebra, neural network gradients — relies on getting signs right. A sign error in step 2 propagates to a wrong answer in step 10. We slow down here so the rest is built on a clean foundation.

A signed number is a number with a direction:

  • Positive (+3+3, or just 33) — to the right of zero on a number line.
  • Negative (3-3) — to the left of zero.

The four rules

1. Adding numbers with the same sign

Add the values, keep the sign. (5)+(3)=(5+3)=87+4=11(-5) + (-3) = -(5+3) = -8 \qquad 7 + 4 = 11

2. Adding numbers with different signs

Subtract the smaller value from the larger value, keep the sign of the larger. (7)+4=(74)=3(-7) + 4 = -(7-4) = -3 (3)+8=83=5(-3) + 8 = 8 - 3 = 5

3. Subtraction = adding the opposite

ab  =  a+(b)a - b \;=\; a + (-b) 7(4)7 - (-4) becomes 7+4=117 + 4 = 11. 53-5 - 3 becomes 5+(3)=8-5 + (-3) = -8.

4. Multiplication and division — same rule

  • Same signs → positive: (5)×(2)=10(-5) \times (-2) = 10,   12÷3=4\;-12 \div -3 = 4.
  • Different signs → negative: (5)×3=15(-5) \times 3 = -15,   20÷5=4\;20 \div -5 = -4.

A common trap

When you see 32-3^2, the exponent applies only to the 33: 32=(33)=9(3)2=(3)(3)=9-3^2 = -(3 \cdot 3) = -9 \qquad (-3)^2 = (-3)(-3) = 9 Parentheses change the meaning.

graphing calculator

Type the expressions from the margin note. Compare your answers.

marginalia & questions
Anything you’d like to ask?
Worked examples, alternative explanations, why a rule works.