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?
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$.