Skip to main content

Published: 2026-07-06Last updated: 2026-08-19By Davide Coronese

Discount Calculator

Enter the original price and discount to see what you save and what you pay, with the math laid out in plain steps so you can check a sale in seconds without guessing at the till.

$
%
Local calculation in your browserno data sent — formula in lib/calculators/*.ts + automated tests
FormulaVerified source
Sale Price = Price × (1 - Discount / 100) | Saving = Price × Discount / 100

Decimal = discount / 100. One minus decimal is the share you still pay.

Discounts: how much you save and what you actually pay

A discount shaves a chunk off the price, and honestly it is the thing I check first when I shop (especially when the tag says 30% off but I am not sure what that means in euros). Put in the original price and the percent and you see the saving and what is left to pay, without doing it by hand and without second-guessing the tag, which is exactly the kind of quick check I wish I had on my phone when the queue is long and the cashier is waiting.

TL;DR

  • 20% off means you pay 80%, which sounds obvious until you are in a rush and try to do it in your head
  • Formula: Sale Price = Price × (1 - Discount / 100) | Saving = Price × Discount / 100
  • Example 1: Calculating a 30% discount on a designer coat

How it works

20% off means you pay 80%, which sounds obvious until you are in a rush and try to do it in your head. Turn the percent into a decimal (divide by 100), multiply by the price for the saving, then subtract. Or price × (1 minus decimal) gets you straight to the sale price, and honestly I use the second way because it is one step less and I make fewer mistakes when I am tired.

The math

Discount / 100 is the decimal. Price × decimal is what you save. Price minus saving is what you pay. Price × (1 - decimal) does it in one step.

Decimal = discount / 100. One minus decimal is the share you still pay.

Discount: 10%, 20%, 30% on the fly

If you search how to calculate discount or percent off, shortcut: 10% = price×0.10, 20% = ×0.20, 30% = ×0.30. Example: $120 at 30% off → $36 off, pay $84. Our discount calculator does both directions instantly.

DiscountSave on 100You pay
10%10,00€90,00€
20%20,00€80,00€
30%30,00€70,00€
50%50,00€50,00€

Source: FTC Guides Against Deceptive Pricing.

Examples

Example 1: Calculating a 30% discount on a designer coat

  1. Identify original retail price: $150.00
  2. Identify the promotional discount percentage: 30%
  3. Convert percentage to a decimal: 30 ÷ 100 = 0.30
  4. Calculate absolute savings: $150.00 × 0.30 = $45.00 saved
  5. Subtract savings to find final price: $150.00 - $45.00 = $105.00

Example 2: Buying sneakers with a 15% loyalty coupon

  1. Original price of the sneakers: $85.00
  2. Loyalty coupon rate: 15%
  3. Convert percentage to a decimal: 15 ÷ 100 = 0.15
  4. Calculate absolute savings: $85.00 × 0.15 = $12.75 saved
  5. Subtract savings to find final price: $85.00 - $12.75 = $72.25

When to use it

Black Friday and Seasonal Sales Shopping

During major shopping seasons, verifying discounts at checkout protects you from advertising errors. Stores sometimes mislabel tags, or systems fail to apply discounts properly. Checking the math ensures you pay exactly what is advertised.

Business Inventory Clearance

Retail managers use discount margins to clear slower-moving items from shelves. By calculating how much they can discount without selling below the product cost, they secure cash flow while preserving business viability.

Bulk Purchase Negotiations

In B2B transactions, sellers often offer volume-based discounts. Knowing how these compound reductions affect the total invoice cost helps procurement officers make smart purchasing decisions.

⚠ Common mistakes

  • Double Discounting Illusion: If a store offers a '30% off' sale and you have an extra '20% off' coupon, the total reduction is NOT 50%. Instead, the 30% discount is applied first, and then the 20% coupon is applied to that reduced subtotal. The true net discount is 44%.
  • Confusing Value with Percentage: A bigger percentage does not always mean a bigger absolute saving. A 10% discount on a $1,000 laptop ($100 saved) is far more valuable than a 50% discount on a $20 t-shirt ($10 saved).

FAQ (10)

Is a discount applied before or after sales tax?

In almost all legal jurisdictions, percentage discounts are applied to the retail price before sales taxes are calculated. This means you also end up paying less in tax.

What is a 'rebate' compared to a discount?

A discount is deducted instantly at the cash register when you make your purchase. A rebate, however, is a partial refund that you claim by submitting a receipt to the manufacturer at a later date.

How do I calculate a 20% discount in my head quickly?

To calculate 20% quickly, find 10% of the price by moving the decimal point one digit to the left, double that number, and subtract it from the original price.

How do I calculate percent off?

Multiply the original price by the percent divided by 100 to get the saving, then subtract. For 25% off 80, 80 × 0.25 = 20, so you pay 60. A percent off calculator does the same steps instantly.

What is a discounted price?

The discounted price is what you pay after the saving is taken off. If the original is 120 and the saving is 18, the discounted price is 102.

What does percent off mean?

It is the share taken off the original price. 20% off means you pay 80% of the starting price.

If I type my salary or prices here, do you store them?

No — and that's deliberate. Everything runs locally in your browser, nothing leaves your device. We don't see your net salary, your margins, or the VAT numbers you test. For a finance tool that matters: you can run a quick check on a payslip or an invoice while on public Wi-Fi and close the tab knowing no trace is kept server-side.

Can I use it on the train without signal to check an invoice?

Yes. Load the page once, then it works offline. VAT, discount and mortgage math are all pure JavaScript — no API call. I often test it in airplane mode: open the mortgage page, type 250,000 at 4.5% for 25 years, you get the schedule instantly, even in a tunnel.

Can I file taxes with these results?

Use it as a fast sanity check, not as the final filing. Formulas are standard (e.g. Net = Gross / 1+VAT) and verified against official sources listed at the bottom, but rates and thresholds change — Italy's 22% vs Germany's 19%, or IRPEF brackets. For the actual declaration, double-check with your accountant or Agenzia delle Entrate / HMRC / IRS.

How do I send a calculation to my accountant?

Hit 'Share Link' under the results. It encodes the inputs in the URL — e.g. ?price=1200&vat=22 — so your accountant opens the exact same view, no screenshot needed. You can also copy the result with one tap and paste it into an email.

Sources & References

Related Calculators

Looking for other tools?Discover our full collection of lightweight offline-ready resources
Back to Dashboard