How to get original number from a subtracted percentage number

3.7k Views Asked by At

Assume I have some values like this:

91
4550
773500
etc...

I know all of these values already subtracted with 9% like this :

100 - 9         (9      is 9% of 100)    = 91
5000 - 450      (450    is 9% of 5000)   = 4550
850000 - 76500  (76500  is 9% of 850000) = 773500

What I want?

I need a formula to give me the original value.

For instance:

I give it 91 and return me 100

or

I give it 4550 and return me 5000

Any ideas?

4

There are 4 best solutions below

0
On

If $x$ is the number you are looking for, and $y$ is the number you are given (the subtracted number), then you know that $$y= x - (0.09\cdot x)$$

this is an equation you should easily be able to solve for $x$ (i.e., change the equation into something like $$x=C\cdot y$$ for some constant $C$.

2
On

Hint, if you start with a value of $x$, subtracting $9\%$ gives you $91 \%$ of the original value (because $100 - 9 = 91$).

So the new value $y$ is given by $y = \frac{91}{100}x = 0.91x$ (or $0.91$ (a constant) times $x$).

Can you figure out how to rearrange it to get $x$ in terms of $y$?

If $y = k \times x$, where $k$ is a constant, what happens to the equation if you divide both sides by $k$?

0
On

Hints:

  • $1-\frac{9}{100} = 0.91$
  • $4550 = 5000 \times 0.91$
  • $5000 = 4550 \,\div\, ???$
0
On

Replace the $9$ by $x$ to be more general.

So you have $$A=B-\frac x{100} B=\left(1-\frac x{100}\right) B$$ and you know $A$ So, divide both side by the factor to get $$B=\frac{A }{1-\frac x{100} }$$