Percentage Decrease Calculator
To decrease a number by a percentage, multiply the number by (1 − percent ÷ 100): new value = value × (1 − percent ÷ 100).
verified_userReviewed by the Calculopedia editorial teamLast updated 2026-08-14
Embed on your site
Embed this calculator on your site:
<iframe src="https://calculopedia.darzh.xyz/embed/percentage-decrease-calculator/" width="100%" height="700" style="border:0;border-radius:12px" loading="lazy"></iframe>
quizExample
How this calculator works, with real numbers (no JavaScript needed):
Inputs
- Original number
- 2000
- Decrease by
- 25
Results
- New value
- 1,500
- Amount saved / reduced
- 500
functionsThe formula
A percentage decrease answers the everyday question "what does the number become after shaving X% off?" — whether that is a sale price, a cut budget or a depreciated asset. Unlike percentage change, which compares two separate readings, this calculator starts from a single value and applies the reduction directly, producing both the new value and the amount removed.
The formula
New value = value × (1 − percent ÷ 100)
Or as two explicit steps:
Decrease = value × percent ÷ 100
New value = value − decrease
Worked example
₹2,000 with a 25% reduction:
Decrease = 2,000 × 25 ÷ 100 = ₹500
New value = 2,000 − 500 = ₹1,500
One line: 2,000 × 0.75 = ₹1,500. The calculator shows both figures — the amount reduced and the new value — so the two halves of the operation stay visible.
Why (1 − percent ÷ 100)?
"Take 25% off" means you keep the other 75%. The percentage that remains is the multiplier: take 10% off → keep 90% → multiply by 0.90; take 50% off → keep half → ×0.50; take 5% off → keep 95% → ×0.95. Framing every reduction as "what's left" makes the result almost instant to sanity-check — the new value can never be more than the original.
Comparing two reductions
Percentages hide raw size. A 10% cut on ₹1,00,000 removes ₹10,000 — exactly the same money as a 20% cut on ₹50,000. Before choosing between two reductions, translate each into absolute rupees: the percentage tells you the fraction, but only the rupee amount tells you the impact.
Recovering the original
Getting back to the pre-reduction value is one division: a ₹1,500 year-end price that is 25% lower than list was ₹1,500 ÷ 0.75 = ₹2,000. Subtract-and-divide confusion is the classic error here; the survivor of the two (the reduced value) is always divided by what remains.
Everyday uses
- Discounts — 40% off a ₹3,000 item: 3,000 × 0.60 = ₹1,800.
- Depreciation — an asset worth ₹1,00,000 losing 15% a year is worth ₹85,000 after year one.
- Budget cuts — trimming a ₹50,000 line by 20% frees ₹10,000.
- Measurements and specifications — any "down by X%" tolerance or margin of error.
Repeated decreases do not stack linearly
Two consecutive 10% cuts are not 20% off, because the second cut applies to the already-reduced figure. Year-over-year depreciation is the classic case:
₹1,00,000 × 0.90 × 0.90 = ₹81,000 (a net drop of 19%, not 20%)
Banks, insurers and tax rules quote "flat X% per period" precisely because compounding makes the true total differ from the sum of the rates.
The boundary cases
- A 100% decrease brings the value to exactly zero — there is nothing left to take, which is why the calculator caps the input at 100.
- Beyond 100%, the result turns negative. "Negative prices" in real life usually mean a pricing error, a data-entry slip, or a promotional stunt — treat all three as suspect.
- A 0% decrease leaves the value untouched; entering it is a useful sanity check of the tool itself.
Common mistakes
- Subtracting the percentage number directly (2,000 − 25 = 1,975) instead of multiplying by (1 − percent ÷ 100).
- Compounding when a flat discount was intended — a one-time sale discount applies to the original price once, not repeatedly.
- Reading "off" as "of": 25% off ₹2,000 leaves ₹1,500, while 25% of ₹2,000 is the ₹500 saving — two different numbers, and the words decide which one you get.
- Applying the decrease to the already-decreased value in a multiplier when the percentage was meant as "off the sticker price".
For the mirror-image operation — adding a percentage instead of removing one — use the percentage increase calculator. To compare two existing values rather than scale one, the percentage change tool fits better.
helpFrequently asked questions
question_markHow do I take a percentage off a number?
Multiply the number by (1 − percent ÷ 100). For example, 25% off 2,000 gives 2,000 × 0.75 = 1,500.
question_markWhat is 40% off 3,000?
3,000 × 0.60 = 1,800. You save 1,200 and pay 1,800.
question_markWhat is the formula for percentage decrease?
New value = original × (1 − percent ÷ 100). The decrease itself is original × percent ÷ 100.