To add integers, think about their signs (positive or negative) and then either add or subtract their sizes (absolute values).

Core rules (the β€œquick scoop”)

  • Two positives: add and keep positive.
    • Example: 3+5=83+5=83+5=8.
  • Two negatives: add their absolute values and keep negative.
    • Example: βˆ’3+(βˆ’5)=βˆ’(3+5)=βˆ’8-3+(-5)=-(3+5)=-8βˆ’3+(βˆ’5)=βˆ’(3+5)=βˆ’8.
  • One positive, one negative: subtract the smaller absolute value from the larger, keep the sign of the larger.
    • Example: 7+(βˆ’4)7+(-4)7+(βˆ’4): 7βˆ’4=37-4=37βˆ’4=3, answer +3+3+3.
* Example: βˆ’9+5-9+5βˆ’9+5: 9βˆ’5=49-5=49βˆ’5=4, answer βˆ’4-4βˆ’4.
  • Adding zero: the number stays the same.
    • Example: 6+0=66+0=66+0=6, βˆ’8+0=βˆ’8-8+0=-8βˆ’8+0=βˆ’8.

Tiny story to remember it

Imagine a number line as a street.

  • Positive integers are steps to the right, negative integers are steps to the left.
  • Adding a positive integer means walking right; adding a negative means walking left.

So, βˆ’2+7-2+7βˆ’2+7 is β€œstart at βˆ’2-2βˆ’2, walk 7 steps right,” and you land on 5.

Number line view

  • Start at the first integer on the number line.
  • If the second integer is positive, move right that many spaces.
  • If the second integer is negative, move left that many spaces.

Example: 5+(βˆ’10)5+(-10)5+(βˆ’10)

  • Start at 5, move 10 steps left, land at βˆ’5-5βˆ’5.

Mini table of sign rules (HTML)

Here’s a simple HTML table capturing the sign rules.

html

<table>
  <thead>
    <tr>
      <th>First integer</th>
      <th>Second integer</th>
      <th>Operation on sizes</th>
      <th>Sign of result</th>
      <th>Example</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Positive</td>
      <td>Positive</td>
      <td>Add</td>
      <td>Positive</td>
      <td>2 + 5 = 7</td>
    </tr>
    <tr>
      <td>Negative</td>
      <td>Negative</td>
      <td>Add absolute values</td>
      <td>Negative</td>
      <td>(-2) + (-5) = -7</td>
    </tr>
    <tr>
      <td>Positive</td>
      <td>Negative</td>
      <td>Subtract absolute values</td>
      <td>Sign of larger absolute value</td>
      <td>2 + (-5) = -3</td>
    </tr>
    <tr>
      <td>Any integer</td>
      <td>Zero</td>
      <td>No change</td>
      <td>Same as first integer</td>
      <td>0 + 5 = 5; 0 + (-5) = -5</td>
    </tr>
  </tbody>
</table>

A few practice examples

  1. 4+(βˆ’6)+134+(-6)+134+(βˆ’6)+13
    • 4+13=174+13=174+13=17 (both positive).
 * 17+(βˆ’6)17+(-6)17+(βˆ’6): subtract 17βˆ’6=1117-6=1117βˆ’6=11, keep positive β†’ 111111.
  1. βˆ’2+(βˆ’9)-2+(-9)βˆ’2+(βˆ’9)
    • Same sign, both negative.
    • 2+9=112+9=112+9=11, keep negative β†’ βˆ’11-11βˆ’11.
  1. βˆ’5+7-5+7βˆ’5+7
    • Different signs.
    • 7βˆ’5=27-5=27βˆ’5=2, larger absolute value is 7 (positive) β†’ +2+2+2.

TL;DR:

  • Same sign β†’ add and keep that sign.
  • Different signs β†’ subtract absolute values, keep the sign of the larger absolute value.
  • Adding zero changes nothing.

Information gathered from public forums or data available on the internet and portrayed here.