What is the formula for calculating future value with increasing interest rates?

In summary: PRINT "final principle=",aIn summary, the conversation discusses an example of future value of an amount at an increasing rate, using a starting amount of $1000.00 with a 3% interest rate in the first year and a rate increase of 0.10 each subsequent year. The formula for calculating the future value in this case involves continuously compounded interest with a linearly increasing interest rate. The solution for this scenario can be expressed as FV(t) = $741.228 * e^(0.0281893 * 1.09871^t / log(1.09871)). There may be a way to express the formula in a simpler form using a product, but it is not immediately evident.
  • #1
Wilmer
307
0
Code:
YR    RATE      INTEREST      BALANCE
0                             1000.00
1    .03         30.00        1030.00
2    .033        33.99        1063.99
3    .0363       38.62        1102.61
4    .03993      44.03        1146.64
Above is an example of future value of an amount at an incresing rate:
$1000.00 at rate 3% 1st year, then the rate increasing by .10 each year.
As example, year2 rate = .03 * 1.10 = .033

What is the formula to calculate the future value in such circumstances?
 
Mathematics news on Phys.org
  • #2
Wilmer said:
Code:
YR    RATE      INTEREST      BALANCE
0                             1000.00
1    .03         30.00        1030.00
2    .033        33.99        1063.99
3    .0363       38.62        1102.61
4    .03993      44.03        1146.64
Above is an example of future value of an amount at an incresing rate:
$1000.00 at rate 3% 1st year, then the rate increasing by .10 each year.
As example, year2 rate = .03 * 1.10 = .033

What is the formula to calculate the future value in such circumstances?

I can't see an obvious closed form (rather than a product with one term for each year), but this can be tackled by setting up the differential equation for continuously compounded interest with a linearly increasing interest rate.

The solution is then of the form:

\[ FV(t)=P_0 e^{\frac{r_0*\rho^t}{\log(\rho)}} \]

Where \(P_0,\ r_0\) and \(\rho\) are related to but not quite the principle, the initial interest rate and the annual interest growth factor.

In this case \(P_0\approx 741.228\), \( r_0\approx 0.0281893\) and \( \rho\approx 1.09871\)

CB
 
  • #3
Thanks CB.
I thought there was a way, since the rates themselves can be "summed" by formula,
(like in example: .03 + .033 + .0363 + .03993 = .13923; .13923 / 4 = ~.0348)
then use an average...but that doesn't quite work...
 
  • #4
Wilmer said:
Thanks CB.
I thought there was a way, since the rates themselves can be "summed" by formula,
(like in example: .03 + .033 + .0363 + .03993 = .13923; .13923 / 4 = ~.0348)
then use an average...but that doesn't quite work...

We want:

\[ FV(n)=P_0 \prod_{k=1}^n (1+r_0 \rho^{k-1}) , \ \ n\ge 1\]

where \(P_0\) is the principle, \(r_0\) the initial interest rate and \(\rho\) the annual groth factor for the rate.

Now there may be a way to express the product in a "nice" form but I can't see it.

CB
 
  • #5
Agree. In "looper words":
a=1000:r=.03:i=.10:n=4

FOR y = 1 TO n

k = a * r [this period's interest]

a = a + k [this period's resulting principle]

PRINT y,k,a

r = r * i [update rate]

NEXT y
 

Related to What is the formula for calculating future value with increasing interest rates?

1. What is an interest rate?

An interest rate is the percentage of the principal amount of a loan or investment that is charged as interest to the borrower or earned by the lender. It is essentially the cost of borrowing or the return on investment.

2. Why do interest rates change?

Interest rates change due to various economic factors such as inflation, economic growth, government policies, and supply and demand in the financial market. Changes in these factors can cause interest rates to increase or decrease.

3. How does increasing interest rates affect the economy?

Increasing interest rates can have both positive and negative effects on the economy. On one hand, it can help control inflation and encourage saving. On the other hand, it can make borrowing more expensive, which can slow down economic growth and affect consumer spending.

4. How does increasing interest rates affect consumers?

Increasing interest rates can affect consumers in different ways. For those who have loans or credit card debt, it means they will have to pay more in interest. However, for those who have savings or investments, they can earn more in interest. It can also affect the overall cost of living, as higher interest rates can lead to higher prices for goods and services.

5. How do central banks control interest rates?

Central banks are responsible for setting interest rates in an economy. They use monetary policy tools, such as buying or selling government bonds, to influence the supply of money and credit in the economy, which in turn affects interest rates. By adjusting these tools, central banks can increase or decrease interest rates to achieve their monetary policy goals.

Similar threads

  • General Math
Replies
1
Views
2K
Replies
2
Views
10K
Replies
30
Views
7K
Replies
10
Views
3K
  • Precalculus Mathematics Homework Help
Replies
3
Views
4K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
1K
  • Precalculus Mathematics Homework Help
Replies
2
Views
1K
  • Calculus and Beyond Homework Help
Replies
5
Views
2K
Replies
10
Views
2K
Back
Top