Adding Numbers Cleverly

A list of numbers does not have to be added in the order it is written. Scan for pairs that make a round number and the arithmetic almost does itself.

--
Adding Numbers Cleverly — Moosa Academy

A list of numbers does not have to be added in the order it is written. Addition can be rearranged freely, so the first move should always be to scan for pairs that make a round number — then the arithmetic almost does itself.

Concept Look for pairs first

Because addition can be done in any order, terms may be regrouped to suit you. Take  7 + 5 + 3 :

 7 + 5 + 3 = (7 + 3) + 5 = 10 + 5 = 15

Jumping to the  3 first produces a  10 , and adding to a round number needs no thought. The targets worth hunting for are  10 ,  100 and  1000 .

Example Pairs that make 100

Find  72 + 45 + 28 + 90 + 55 + 10 .

 72 + 28 = 100
 45 + 55 = 100
 90 + 10 = 100
Three hundreds:  100 + 100 + 100
 300

Look at the units digits to find these pairs quickly. Digits that add to  10 — the  2 with the  8 , the  5 with the  5 — are the giveaway.

Example Pairs that make 1000

Find  850 + 150 + 720 + 280 + 460 + 540 .

 850 + 150 = 1000
 720 + 280 = 1000
 460 + 540 = 1000
Three thousands:  1000 + 1000 + 1000
 3000

The same trick, scaled up. Adding these six numbers left to right would take real effort; spotting the pairs turns it into counting to three.

Example Decimals, with one left over

Find  0.1 + 0.2 + 0.3 + 0.4 + 0.5 + 0.6 + 0.7 + 0.8 + 0.9 .

Pair from the outside inward, each pair making  1
 0.1 + 0.9 = 1 ,  0.2 + 0.8 = 1 ,  0.3 + 0.7 = 1 ,  0.4 + 0.6 = 1
The middle value  0.5 has no partner
 1 + 1 + 1 + 1 + 0.5
 4.5

With an odd count of terms one always sits unpaired in the middle. Add it on at the end rather than trying to force it into a pair.

Example Squares first, then pairs

Find  1^{2} + 2^{2} + 3^{2} + \cdots + 10^{2} .

Work out the squares:  1, 4, 9, 16, 25, 36, 49, 64, 81, 100
Now hunt for convenient pairs among those results
 1 + 9 = 10 ,  4 + 16 = 20 ,  36 + 64 = 100 ,  49 + 81 = 130
Left over:  25 and  100
 10 + 20 + 100 + 130 + 25 + 100
 385

Here the pairs are not symmetric — you pair whichever results happen to combine neatly. The aim is round numbers, not a tidy pattern.

Summary
  1. Addition can be reordered freely, so never add blindly from left to right.
  2. Scan the list for pairs totalling  10 ,  100 or  1000 .
  3. Units digits that add to  10 are the quickest clue to a useful pair.
  4. With an odd count of terms, one value is left unpaired — add it at the end.
  5. Evaluate powers or brackets first, then look for pairs among the results.
  6. Pairs need not be symmetric; any grouping that produces round numbers is fair.