~/tools/reverse-percentage $ run calculator --reverse-percent
Reverse Percentage Calculator
Find the original whole number when you know a part and its percentage. (e.g. 30 is 20% of what?).
A reverse percentage calculator allows you to find the whole value (100%) by dividing the partial amount (Part) by the decimal form of the percentage.
150
Step-by-step: 30 / (20 / 100) = 30 / 0.2 = 150
// How to Calculate Reverse Percentages (Find the Whole)
A reverse percentage problem involves figuring out the 100% original value when only given a fraction of it. This is widely used in payroll (calculating pre-tax base salary), retail (finding pre-discount prices), and census/statistical analysis.
Mathematical Formula:
Whole = Part / (Percentage / 100)
Worked Example 1: 30 is 20% of what number?
Suppose you have a partial value of 30, and you know it represents 20% of a total population.
1. Write the percentage as a decimal: 20% = 0.20.
2. Divide the part by the decimal: 30 / 0.20 = 150.
The total original whole number is 150.
Worked Example 2: Financial Reverse Tax
If a sales tax represents $15, which is 6% of the total cost:
1. Convert 6% to a decimal: 0.06.
2. Divide the partial value by the decimal: 15 / 0.06 = 250.
The total baseline pre-tax cost is $250.
// Frequently Asked Questions
▸What is the difference between standard and reverse percentages?
Standard percentage calculations find the part given the whole and percentage (e.g. 20% of 150 = 30). Reverse percentage calculations work in the opposite direction to find the whole, given the part and its percentage (e.g. 30 is 20% of what? = 150).
▸How do you find the original price before a discount?
To find the original price before a discount, divide the sale price by (1 minus the discount decimal). For example, if you pay $120 after a 20% discount, divide $120 by 0.80 = $150. We have a dedicated 'Reverse Discount Calculator' specifically optimized for this calculation!
▸Why can the percentage input not be 0 in reverse calculations?
Because a part cannot represent 0% of any real number. If the percentage is 0, the equation leads to dividing by zero, which is mathematically impossible.
▸Can I do reverse percentage with decimals?
Absolutely. Our calculator supports real decimal rates. For example, if 18.5 is 12.5% of a number, the whole is 18.5 / 0.125 = 148.