Short Version: Find $r$
$$61.051 = \frac{(1-(1+r)^5)}{(1-(1+r))} * 10$$
(The answer is $0.1$. I am looking for the steps/process to find the answer)
Detailed Version:
Example Scenario: Purchasing Widgets
The first widget costs $x. Each subsequent widget costs r times more than the last widget purchased (x2 = x1 * (1 + r)).
Illustration
The following table illustrates the scenario for a base widget cost (x1) of $10 that increases 10% (r) with each additional unit purchased.
| N (units purchased) | xn (unit cost) | T (cumulative cost for N units) |
|---|---|---|
| 1 | 10 | 10 |
| 2 | 11 | 21 |
| 3 | 12.1 | 33.1 |
| 4 | 13.31 | 46.31 |
| 5 | 14.641 | 61.051 |
As shown, the first widget costs \$10, the second costs \$11 (\$10 * 1.1), and so on. Such that the total cumulative cost for five widgets is \$61.051.
The total cumulative cost for any N units may be found using:
$$T = \frac{(1-(1+r)^N)}{(1-(1+r))} * x_1$$
So for the example above:
$$61.051 = \frac{(1-(1+0.1)^5)}{(1-(1+0.1))} * 10$$
In other words, purchasing five widgets would cost $61.051.
The Question
If the first widget's cost x1, total cumulative cost T and number of widgets purchased N are known, how do we find the value of r.
** Work so far **
$$61.051 = \frac{(1-(1+r)^5)}{(1-(1+r))} * 10$$
$$\frac{61.051}{10} = \frac{\frac{(1-(1+r)^5)}{(1-(1+r))} * 10}{10}$$
$$6.1051 = \frac{(1-(1+r)^5)}{(1-(1+r))}$$
Here's where I start to derail...
$$log(6.1051) = \frac{1 - 5*log(1+r)}{1-(1+r)}$$
$$0.785693 = \frac{1 - \frac{5*log(1+r)}{5}}{1-\frac{(1+r)}{5}}$$
$$0.785693 = \frac{1-log((1+r)}{1-\frac{(1+r)}{5}}$$
...and now I am off the rails completely.
What are the steps to isolate $r$?
Thanks