a 10% discount is NOT what you get when you divide by 10. Rather a 10% discount is the original value MINUS10%of that original value
Discount = 0.1* OriginalValue
DiscountedValue = OriginalValue - Discount
then, to get the orginal value back again, you would add the Discount to the DiscountedValue:
OriginalValue = DiscountedValue + Discount