Erimess wrote:Denis wrote:Erimess wrote:I do not know how to work this out using the math you guys are, and I don't know how to work out the last part of it. That is, I don't know how to increase a payment by 5% a year, and at the same time still compound the 10% on the remainder. I only have my "built-in" equations and I don't know any that do that.
- Code: Select all
j = 10% i = 12%
Year Deposit Interest Balance
0 .00 .00 .00
1 1000.00 .00 1000.00
2 1100.00 120.00 2220.00
3 1210.00 266.40 3696.40
Li'l "picture", $1000 deposit increasing by 10% annually, rate 12% annually.
F = Future value (?)
D = initial deposit (1000)
j = deposit increase (.10)
i = interest rate (.12)
n = number of years (3)
F = D*[(1 + i)^n - (1 + j)^n] / (i - j)
F = 1000(1.12^3 - 1.10^3) / (.12 - .10) = 3696.40
Basically all that simple...google will give ya lotsa sites, like:
http://www.financeformulas.net/Growing- ... Value.html
This isn't the same thing. I could've done that in Excel easily enough. (Though it never hurts to add an equation to the repertoire.)
This is a present value relative to the withdrawals, payments growing at 5% annually, but earning (we assume) 10% semi-annually. That equation is growing to a future value, not shrinking from a present value.
YES, it's the same thing...though hard to see, I'll admit.
I used it that way because (being lazy) it was easier to "do the typing"!
Take the ending balance of 3696.40 and get its Present Value: 3696.40 / 1.12^3 = ~2631.02.
So this means that if a payment of $1000 increasing by 10% yearly is made for 3 years,
then the amount that can be "borrowed" is $2631.02
- Code: Select all
j = 10% i = 12%
Year Payment Interest Balance
0 .00 .00 2631.02
1 -1000.00 315.72 1946.74
2 -1100.00 233.61 1080.35
3 -1210.00 129.65 .00
In the actual problem, the balance required in the account after 35 years, to accomodate a withdrawal
of $132,691.91 yearly increasing by 5% yearly would basically be obtained the same way.
So you don't scold me again(!), here's the direct formula:
P = Payment (?)
A = Amount borrowed (2631.02)
n = number of periods (3)
i = interest rate (.12)
j = payment increase (.10)
P = A(i - j) / [1 - (1 + j)^n / (1 + i)^n]
P = 2631.02(.12 - .10) / (1 - 1.10^3 / 1.12^3) = 1000



