Integer Operations: Negatives
How to evaluate integer expressions without dropping a sign
Integer questions at this level rarely test whether you can compute 3 × 4. They test whether a minus sign survives a five-step expression intact. Almost every mark you lose here is a sign that wandered off or an operation done in the wrong order, not an arithmetic slip.
So do the boring, reliable thing first: turn every subtraction into an addition of the opposite. Once a − b is written as a + (−b), and a − (−b) as a + b, there are no more double negatives to trip over — just a list of signed numbers to combine in order, taking every × and ÷ before any + and −.
- Clear brackets first, working from the innermost pair outward.
- Rewrite each subtraction as adding the opposite: a − (−b) becomes a + b, a − b becomes a + (−b).
- Do every × and ÷ next, strictly left to right — they bind tighter than + and −, so a leading minus has to wait its turn.
- In each product or quotient, count the negative factors: an even count gives a positive result, an odd count gives a negative one.
- Finish with + and − from left to right.
- For any percentage, turn it into a multiplier and apply it to the amount actually in front of you at that step — never assume the original amount is the base.
The one idea that kills the traps: a minus sign is an instruction, not glue Why it works
7 − (−2) = 9, not 5.
−3 − 4 × 2 = −3 − 8 = −11, not −3 − 4 = −7 then −7 × 2 = −14.
(−1)(−2)(−3) = −6 — three negatives, so negative.
×1.2 then ×0.8 = ×0.96 — a 4% net fall, not break-even.
5% sales tax after a 20% discount is 5% of the discounted price.
Here is the insight the strong questions are built around: the minus sign that opens an expression is the lowest-priority operation in the room. Students read left to right and feel that the minus "happens first" because it comes first. It doesn't. Multiplication and division jump the queue, and a same-rate rise-then-fall never returns you to the start, because the fall is taken on the bigger number. Master those two facts and the double-negative and precedence traps stop being traps.
Worked examples
- Multiplication first: (−4) × (−2) = 8 (two negatives → positive).
- Now −3 − 8.
- Add the opposite: −3 + (−8) = −11.
- Innermost bracket: 5 − 8 = −3.
- Rewrite: 7 − (−3) − (−2) = 7 + 3 + 2.
- Add: 12.
- ÷ and × left to right, not × before ÷: 48 ÷ (−6) = −8.
- Then −8 × 2 = −16.
- Finally −20 + (−16) = −36.
- Discount: 20% of 2000 = 400, so the price drops to 1600.
- sales tax is charged on the amount now showing: 5% of 1600 = 80.
- Pay 1600 + 80 = 1680.
- Rise: 500 × 1.2 = 600.
- Fall: 600 × 0.8 = 480.
- Net multiplier is 1.2 × 0.8 = 0.96, a 4% loss.
Six mistakes that cost real marks
Keeping the minus on a product of two negatives
✗ (−6) × (−5) = −30
You multiplied the digits correctly but carried a negative sign that should have cancelled. Two negatives multiplied give a positive.
Fix: Count the negative factors before you write the sign. Even count → positive, odd → negative. Two negatives is even, so (−6) × (−5) = 30.
sign_errorAdding two negatives when the expression says multiply
✗ (−4) × (−2) = −6
You treated the × as a +, adding −4 and −2 to get −6. The operation, not just the sign, was wrong.
Fix: Multiply first, then decide the sign: 4 × 2 = 8, two negatives → positive, so (−4) × (−2) = 8.
wrong_operationStopping after the discount and forgetting the tax
✗ $1600
You found the discounted price of the $2000 jacket and stopped. That is a correct intermediate value, but the question asked for the final price including sales tax.
Fix: Read to the end. After the $1600 discounted price, add 5% sales tax ($80) to reach $1680.
partial_computationCharging the tax on the original price
✗ $1700
You took 5% sales tax of the original $2000 ($100) instead of the discounted $1600. The percentage was applied to the wrong base.
Fix: Each percentage acts on the amount currently showing. After discounting to $1600, sales tax is 5% of 1600 = $80, giving $1680.
base_confusionUsing the percent number as if it were dollars
✗ $30 off a $50 book (pay $20)
For a 30% discount you subtracted 30 directly instead of computing 30% of 50. The percent number is not the amount.
Fix: Convert first: 30% of 50 = 0.30 × 50 = $15 off, so you pay $35.
percent_as_wholeWorking left to right through a mixed expression
✗ −3 − (−4) × (−2) = −2
You computed −3 − (−4) = 1 first, then × (−2) = −2, evaluating in reading order and ignoring that × outranks −.
Fix: Do × and ÷ before + and −: (−4) × (−2) = 8, then −3 − 8 = −11.
order_of_ops_lrPractice
Try a mixed set of signed-number and percentage problems built to spring the double-negative, precedence, and wrong-base traps. Work each one to the final value, then check which distractor you would have picked in a hurry.
Frequently asked questions
Why does −3 − 4 × 2 equal −11 and not −14?
Multiplication runs before subtraction, so 4 × 2 = 8 first, then −3 − 8 = −11. You only get −14 if you wrongly do −3 − 4 = −7 first and then −7 × 2, evaluating left to right and ignoring that × outranks −.
Do a 20% rise and a 20% fall cancel out?
No. Percentages multiply, not add: ×1.2 then ×0.8 = ×0.96, a 4% net fall. The fall is taken on the larger amount, so $500 becomes $600 then $480, never back to $500.
When a shop gives a discount and then charges sales tax, what is the tax based on?
The discounted price. Apply the discount first, then take sales tax of the amount that remains. On a $2000 jacket with 20% off then 5% sales tax, sales tax is 5% of $1600 = $80, giving $1680 — not 5% of the original $2000.
How do I stop losing signs in long expressions?
Turn every subtraction into adding the opposite, so a − (−b) becomes a + b. Then in each product count the negative factors: an even count is positive, an odd count is negative. That removes both double-negative and sign-of-product mistakes.
Is 48 ÷ (−6) × 2 the same as 48 ÷ (−12)?
No. Division and multiplication have equal priority and run left to right, so 48 ÷ (−6) = −8 first, then −8 × 2 = −16. Doing (−6) × 2 first is a precedence error and gives the wrong value.