Suppose that I wanted to recursively add a percentage to some number. For example:
20,000 + 10% = 22,000
22,000 + 10% = 22,200
22,200 + 10% = 22,220
etc.
we can easily see the limit is 20,000*(10/9). I want to know how I arrived at this. What is the general rule? For example, suppose we started with 42,000 and applied 27% recursively. How would I find the limit? Thanks.
that is
$i + i^2 + i^3 + i^4....$
multiply by $(i - 1) / (i - 1)$
$[i + i^2 + i^3 + i^4....](i - 1) / (i - 1)$
$ = [(i^2 - i) + (i^3 - i^2) + (i^4 - i^3) + (...) + ...] / (i - 1)$
cancel similar terms, only i remains on the top, all others cancel indefinitely
$ = -i / (i - 1)$
$ = i / (1 - i)$
for 10%, your modified interest rate becomes $0.1 / (1 - 0.1) = .111111 = 11.111..$%