The trap, in one line

When a minus sign sits in front of a bracket, it flips every single term inside — not just the first one. So 5 - (x + 3) is not 5 - x + 3. It is 5 - x - 3 = 2 - x. The plus inside the bracket becomes a minus too. Forget this and your equation will silently lie to you for the rest of the question.

If you have ever lost marks in a CBSE Class 7 or Class 8 algebra paper for a "small mistake," there is a very high chance the small mistake was this one. Teachers who mark hundreds of papers will tell you: more marks are quietly bled away on this one slip than on any other step in linear equations. It is not a hard idea. It is just a habit your brain has not built yet, because for years before algebra you only ever subtracted single numbers, never bracketed expressions.

Let us fix the habit, permanently.

What goes wrong

Look at this expression.

7 - (2x - 5)

A common student instinct is to "drop the bracket" and write

7 - 2x - 5 = 2 - 2x \quad \text{(WRONG)}

The minus sign was applied only to the 2x. The -5 inside the bracket was copied across unchanged. That is the bug. The minus in front of the bracket is supposed to act on everything inside.

The correct expansion is

7 - (2x - 5) = 7 - 2x + 5 = 12 - 2x

Notice the -5 flipped to +5. Why: the minus in front of the bracket means "subtract the whole quantity (2x - 5)." Subtracting -5 is the same as adding 5. If you only flip the first term, you are subtracting 2x but still subtracting 5 — which is not what the original expression said at all.

The bracket-flipping diagram

Here is what is really happening when you distribute a minus sign across a bracket. Every sign inside flips.

Box A — start −( a + b − c ) Box B — after distributing the minus −a b + c + inside flips to − − inside flips to + Every sign inside the bracket changes. The first one is no more special than the others.

That is the entire concept. The minus is not lazy. It does not stop at the first term. It walks across the whole bracket, flipping signs as it goes.

Three worked examples

A wrong attempt, fixed

Simplify 7 - (2x - 5).

A typical wrong solution. "Drop the bracket and copy."

7 - (2x - 5) \stackrel{?}{=} 7 - 2x - 5 = 2 - 2x \quad \text{(WRONG)}

The student flipped the 2x but left the -5 as -5. The minus only acted on one term.

The correct solution. Distribute the minus to every term.

7 - (2x - 5) = 7 + (-1)(2x) + (-1)(-5) = 7 - 2x + 5 = 12 - 2x

Why: the bracket holds the quantity 2x - 5. Subtracting that whole quantity is the same as adding -1 times it. The distributive law then sends the -1 into both 2x and -5. The -5 becomes +5 because (-1)(-5) = +5.

A clean expansion, done right

Simplify 4x - (3x - 2).

Distribute the minus across both terms inside.

4x - (3x - 2) = 4x - 3x + 2 = x + 2

Why: -(3x - 2) is shorthand for -1 \cdot (3x - 2) = -3x + 2. Both signs inside flipped — the +3x became -3x, and the -2 became +2.

If you had forgotten to flip the -2, you would have written 4x - 3x - 2 = x - 2. That is off by 4. Wrong answer, full stop.

In an actual equation

Solve 5 - (x + 1) = 8.

Step 1 — distribute the minus across the bracket. Both signs inside flip.

5 - x - 1 = 8

Why: -(x + 1) = -x - 1. The +1 flipped to -1. If you had written 5 - x + 1 = 8, you would have got x = -2, which is wrong.

Step 2 — combine constants on the left.

4 - x = 8

Step 3 — isolate x. Subtract 4 from both sides:

-x = 4 \implies x = -4

Step 4 — verify in the original equation.

5 - (-4 + 1) = 5 - (-3) = 5 + 3 = 8 \checkmark

It checks out. If you had partially flipped, you would have got x = -2, and the verification step 5 - (-2 + 1) = 5 - (-1) = 6 \neq 8 would have caught you — provided you bothered to verify.

Two foolproof techniques

If your hand keeps slipping, use one of these every time. They take five extra seconds and save you marks for the rest of your life.

Technique 1 — write the invisible -1

Whenever you see a minus in front of a bracket, rewrite it as -1 multiplying the bracket.

5 - (x + 3) \;=\; 5 + (-1)(x + 3)

Now use the distributive law — the -1 multiplies each term inside.

5 + (-1)(x) + (-1)(3) = 5 - x - 3 = 2 - x

Why this works: the distributive law a(b + c) = ab + ac does not care whether a is positive, negative, or a variable. Once you write the -1 explicitly, your hand will multiply it into every term out of habit, just like you do with any other coefficient. The "minus in front of a bracket" is not a special operation — it is just multiplication by -1 in disguise.

Technique 2 — count signs after expanding

After you drop the bracket, do a one-second audit. Look at the original bracket, count how many terms were inside, and check that every one of them has its sign flipped in your new line.

For -(a + b - c):

If even one sign on your page matches the sign in the original bracket, you forgot to flip it. Fix it now, before the error breeds.

Why partial flipping is wrong: subtraction distributes the same way addition does. The expression a - (b + c) literally means "from a, take away the entire quantity b + c." If you take away b but then add c instead of taking away c, you have not taken away the whole quantity — you have taken some and given some back. That is a different operation, and a different number.

Why this error is so common in CBSE Class 7-8

Up to Class 6, almost every minus you ever wrote sat between two single numbers: 7 - 3, 20 - 8, that sort of thing. Your brain learned to treat minus as "remove the next thing." Now in Class 7, equations like

2(x - 1) - (x - 4) = 5

ask you to subtract a whole bracketed expression, and the old habit fires: you remove the next thing, which is just x, and copy -4 across. The error is not a maths failure. It is a habit that has not yet been retrained for algebra.

Once you have done thirty deliberate expansions using Technique 1, the new habit takes over and you stop losing marks here forever. It really is that mechanical.

A fast self-test

Try these in your head, then check.

  1. 10 - (x + 4) = ?
  2. 3x - (2x - 7) = ?
  3. -(a - b - c) = ?
  4. Solve 9 - (2x - 3) = 4.

Answers: (1) 6 - x; (2) x + 7; (3) -a + b + c; (4) 9 - 2x + 3 = 4 \Rightarrow 12 - 2x = 4 \Rightarrow x = 4.

If you got any of these wrong because of a sign, write the -1 explicitly next time and try again. The trick is not to be smarter — it is to make the multiplication visible.

References

  1. NCERT, Mathematics Textbook for Class 7, Chapter 12: Algebraic Expressions — distributive law and bracket expansion.
  2. NCERT, Mathematics Textbook for Class 8, Chapter 2: Linear Equations in One Variable.
  3. Khan Academy, Distributive property with variables (negative numbers) — practice on signed distribution.
  4. Art of Problem Solving, Distributive Property.