Let's say I have the number 1, and I want to increase it 99 times until the sum of all 100 numbers (including the original 1) equals 1000. I want the multiplier to remain constant, and to be used on the result of the previous number.
So...
1 * 1.1 = 1.1
1.1 * 1.1 = 1.21
1.21 * 1.1 = 1.331
and so on...
Basically, the multiplier is X since all of the other parts are known, but I am totally stuck.
Starting Number = 1
Sum Of All Numbers = 1000
Number of increases = 99
Multiplier = X
Any help would be very appreciated.
EDIT: I forgot an important detail. DUH! Sorry.
I want the sum of all of the 100 numbers to equal 1000 or less.
$$x^{100} = 1000$$ $$x = 1000^{1/100} \approx 1.0715$$
Response to comment: $$1+x + x^2 + \cdots + x^{100} = 1000$$ $$\frac{x^{101} - 1}{x-1} = 1000$$ WolframAlpha suggests the solution is near $1.0365$