Half the word problems in your textbook ask some version of: "Initially Ravi had X and Y and Z rupees in three accounts. He adds some money to one account. By how much does the total change?" The slow student recomputes the total from scratch. The fast student spots that only one term moved, so only that term matters — and the other two can be shuffled out of the way. That shuffle is associativity of addition, used recognition-style.

The structural move

If a total is a sum S = a + b + c and only b changes by an amount \Delta b, the new total is

S' = a + (b + \Delta b) + c.

By associativity and commutativity, you can regroup this so that the changing term sits by itself:

S' = (a + b + c) + \Delta b = S + \Delta b.

Why this works: associativity lets you move the brackets wherever you like, and commutativity lets you rearrange the order of addends. Together, they let you isolate \Delta b on one side and the old total S on the other. Nothing was recomputed.

The change in the total is exactly \Delta b. The values a and c do not appear in the answer, because they did not change. You did not need to know them.

The recognition cue

Whenever a word problem asks "by how much does the total change?" — or uses phrases like "increased by", "reduced by", "adjusted by" — you should hear an alarm bell. The question is not asking for the new total; it is asking for the delta. And the delta of a sum when only one term changes is just the change in that term.

So the first thing to ask yourself is:

The answer to the second question is the answer to the original question. The other numbers are distractors.

A school-book example

Meena has ₹ 4,200 in her savings account, ₹ 6,800 in a fixed deposit, and ₹ 1,500 in cash. She deposits ₹ 800 into her savings account. By how much does her total money change?

The slow method: add up the old total (4200 + 6800 + 1500 = 12{,}500), add up the new total with 5000 in savings (5000 + 6800 + 1500 = 13{,}300), subtract: 13{,}300 - 12{,}500 = 800.

The fast method: only the savings account changed. The change is +800. The answer is \boxed{₹\,800}. No other numbers needed.

Three accounts with one changing and two static, showing the total change equals the single deltaThree horizontal bars representing three accounts. The top bar representing a savings account grows by a highlighted delta amount; the other two bars representing fixed deposit and cash stay unchanged. An equation below says: new total minus old total equals delta, with the two unchanged bars visually crossed out as irrelevant. savings changed FD unchanged cash unchanged ΔS = S' − S = Δb only the changing term survives in the answer
Three accounts, one changes. The unchanged bars cancel when you subtract the new total from the old. What remains is the single delta. You never needed to add the unchanged values at all.

Why this is associativity in disguise

If you write out the cancellation carefully:

S' - S \;=\; (a + (b + \Delta b) + c) \;-\; (a + b + c).

To see that the as cancel and the cs cancel, you need to regroup the expression:

S' - S \;=\; (a - a) + ((b + \Delta b) - b) + (c - c) \;=\; 0 + \Delta b + 0 \;=\; \Delta b.

Regrouping from "(a + b + c) - (a + b + c) + \Delta b" into "(a - a) + (b - b + \Delta b) + (c - c)" is exactly the associative law at work — moving brackets so that matching terms can cancel. Without associativity, you would be forced to subtract the whole new total from the whole old total, digit by digit. Associativity lets you pair up matching terms instead.

Try it: drag the delta and watch

Interactive delta driver showing total change tracks the single changed termA number line with a single draggable point representing a delta added to one of three accounts holding four, seven, and three rupees. Above the line three readouts show: the original total, the new total, and the change in total. As the reader drags the delta, only the new total and the change update — the original total stays at fourteen. Δ = −10 Δ = 0 Δ = +10 ↔ drag Δ
The original total never moves from $14$. The new total and the change in total both track $\Delta$ exactly — because the other two accounts, $7$ and $3$, are constant and contribute nothing to the change.

When there are several deltas

If two accounts change by \Delta_1 and \Delta_2, the same logic scales: the change in total is \Delta_1 + \Delta_2. The unchanged accounts still do not appear. You regroup around the changing terms together.

S' - S \;=\; \Delta_1 + \Delta_2.

In general, the change in a sum is the sum of the changes of its terms. This sounds obvious written down, but most students still do the "recompute-and-subtract" dance instead of spotting it.

Where this pattern appears

In every case, the answer is the change in the one thing that changed. Associativity of addition is what lets you write this as a single term rather than a mess.

One warning — make sure the other terms really are constant

This shortcut collapses if any other term secretly depended on the changing one. For example:

Meena had ₹ 4,200 in savings earning 10% annually, and ₹ 6,800 in a fixed deposit earning 5% annually. One year later, by how much did her total change?

Here both terms changed — savings grew by 420 and FD grew by 340. You cannot just read off one delta. The associative shortcut still works (total change = 420 + 340 = 760) but only after you correctly identify all the deltas. Misreading "which terms are constant" is the only way to get this wrong.

Why the caution: associativity permits the regrouping but does not tell you which terms are constant. That is a reading-comprehension step, not an algebra step. The algebra only kicks in once you know the deltas.

Summary

Related: Operations and Properties · Commutative, Associative, Distributive — Three Laws as Three Rearrangements · Expression Trees: Watching Precedence Collapse From the Bottom Up · Read an Expression as a Tree, Not a Sentence — × Binds Tighter Than +, Full Stop