Welcome back to Multi-Step Percent Problems! This is the second lesson in our five-lesson course, and you are already off to a strong start. In Lesson 1, we practiced choosing the correct base whenever a problem hands us more than one number — a habit that will stay useful throughout every lesson ahead.
Now we turn the typical percent problem on its head. Instead of starting with an original amount and calculating forward to find a result, we will start with the result and figure out what the original amount must have been. This kind of reverse calculation shows up constantly in daily life. You see a sale price tag and wonder what the item cost before the discount. You know your current salary after a raise and want to recover what you earned before. In each case, the original is hidden, and the percent change is your only clue for getting back to it.
The Forward and Backward Directions
Reversing a Percent Increase
Reversing a Percent Decrease
Deciding Between 1-Plus and 1-Minus
A Common Trap: Applying the Percent to the Final Amount
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal
Applying a percent change works like a one-way street. When you know the original amount, you multiply to get the final amount — the math flows forward: original → change → final. For instance, reducing a $200 item by 10% means multiplying $200 by 0.90 to land on $180.
But what if you only know the $180 end result and the 10% discount? You need to travel the street in reverse: final → ? → original. The catch is that you cannot simply calculate 10% of $180 and add it back, because the 10% was originally taken from the unknown larger number, not from $180. Ten percent of $180 is $18, which would give you $198 — not the true original of $200. This mismatch is the entire reason the reverse method requires its own dedicated approach, and it ties directly back to the base awareness we built in Lesson 1.
Let's start with percent increases. Suppose you know that after a 20% raise, an employee now earns $54,000 per year. What was the salary before the raise?
When the raise was originally applied, the calculation moved forward like this:
Original×1.20=Final
The factor 1.20 comes from adding the percent as a decimal to 1: that is, 1+0.20=1.20. To reverse this and isolate the original, we divide both sides by the same factor:
Original=1+rFinal=1.2054,000=$45,000
Here r is the percent expressed as a decimal. The salary before the raise was $45,000. We can verify: 45,000×1.20=54,000. It checks out.
A percent bar can help visualize why the final amount represents 120% of the original:
The general rule for any percent increase:
Original=1+rFinal Amount
where r is the rate written as a decimal (for example, 8% becomes 0.08, so the divisor is 1.08).
Percent decreases work the same way, with one small but important difference: we subtract the rate from 1 instead of adding it.
Imagine you buy a pair of shoes on sale for $68 after a 15% discount. What was the original price? When the discount was applied, the store multiplied:
Original×0.85=Sale Price
The factor 0.85 comes from 1−0.15. To reverse the calculation:
Original=1−rSale Price=0.8568=$80
The shoes originally cost $80. A quick check confirms: 80×0.85=68.
A matching bar model shows that the $68 sale price is only 85% of the original:
The general rule for any percent decrease:
Original=1−rFinal Amount
Note that in real-world problems the division will not always produce a perfectly round number. When that happens, rounding to the nearest cent (two decimal places) is standard practice.
With both formulas in hand, the only decision you need to make is whether to divide by a factor greater than 1 or less than 1. The table below summarizes when to use each:
Situation
Change factor
Example (6%)
Final amount resulted from an increase (raise, markup, tax added)
1+r
1.06
Final amount resulted from a decrease (discount, loss, pay cut)
1−r
0.94
A helpful way to remember: if the final amount is larger than the original should be (because something was added), divide by a number bigger than 1 to bring it back down. If the final amount is smaller than the original (because something was taken away), divide by a number smaller than 1 to bring it back up. In both cases, dividing undoes the original multiplication and returns you to the starting value.
The most tempting mistake in reverse problems is to take the percent of the final amount and add or subtract it directly. For example, if a price is $68 after a 15% discount, you might be tempted to calculate 0.15×68=10.20 and add it back to get $78.20. That answer is wrong because the 15% was originally taken from the unknown original price, not from $68.
Let's compare the two approaches side by side:
Incorrect:68+(0.15×68)=68+10.20=78.20
Correct:68÷0.85=80.00
The error stems from applying the percent to the wrong base — the very issue we studied in Lesson 1. The discount of 15% was a portion of the original price, and $68 is a smaller number than that original. So 15% of $68 will always underestimate the true discount amount ($12), and the recovered original will be too low. Whenever you catch yourself multiplying the percent by the final amount, pause and remember: divide by the change factor instead.
In this lesson, we learned how to work backward from a final amount to recover the original before a percent change. The core method is to divide the final amount by the change factor — 1+r for increases and 1−r for decreases. We also saw why applying the percent directly to the final amount gives the wrong answer, since the percent originally referred to the unknown original, not the number we can see.
Now it is time to put this reverse technique into practice. In the exercises ahead, you will identify the correct divisor, recover original amounts from realistic scenarios, and explain the reasoning in your own words. Take your time, trust the method, and enjoy working the problems backward!