Continuous Compounding over 12 months (finding the rate)

  • Context:
  • Thread starter Thread starter tomadom
  • Start date Start date
  • Tags Tags
    Continuous Rate
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
tomadom
Messages
5
Reaction score
0
This problem is actually for a program I'm writing and I've forgotten my basic maths.I have an initial value starting at period 0 . That value is 20.
At the end of 12 periods (period 12) I have a value of 33.

So I know the last value is 33 and the first value is 20 and I want to find the
continuous compounding rate so that I can apply it at any of the periods 1 to 11 and chart the output. I need to find r.

I know the formula is A = Pe^rt but I get stuck.

33 = 20*e^r at the 12 period, but if it's continuously compounded then I'm not sure what to do with t because:

log(33/20) = r gives me the total amount of interest accumed for that 12 months (21.75%) I think. So I divide that rate by 12 = 1.81% for each month on top of the previous month. But by the time that 12th month is reached I'm at 66.15 not 33.

So conceptually I'm getting mixed up somewhere? Could someone show me?..
Thanks

0 - 20
1 - ?
2 - ?
3 - ?
4 - ?
5 - ?
6 - ?
7 - ?
8 - ?
9 - ?
10 - ?
11 - ?
12 - 33
 
Physics news on Phys.org
Your formula is correct:

$$A=Pe^{rt}$$

Plug in known values:

$$33=20e^{12r}$$

Solve for $r$:

$$r=\frac{1}{12}\ln\left(\frac{33}{20}\right)\approx0.04173127399270744$$

Thus, we find:

$$A(t)=20\left(\frac{33}{20}\right)^{\frac{t}{12}}$$

Now we can fill in the table (rounded to the nearest penny):

[table="width: 300, class: grid"]
[tr]
[td]
Month
[/td]
[td]
Amount
[/td]
[/tr]
[tr]
[td]0[/td]
[td]\$20.00[/td]
[/tr]
[tr]
[td]1[/td]
[td]\$20.85[/td]
[/tr]
[tr]
[td]2[/td]
[td]\$21.74[/td]
[/tr]
[tr]
[td]3[/td]
[td]\$22.67[/td]
[/tr]
[tr]
[td]4[/td]
[td]\$23.63[/td]
[/tr]
[tr]
[td]5[/td]
[td]\$24.64[/td]
[/tr]
[tr]
[td]6[/td]
[td]\$25.69[/td]
[/tr]
[tr]
[td]7[/td]
[td]\$26.79[/td]
[/tr]
[tr]
[td]8[/td]
[td]\$27.93[/td]
[/tr]
[tr]
[td]9[/td]
[td]\$29.12[/td]
[/tr]
[tr]
[td]10[/td]
[td]\$30.36[/td]
[/tr]
[tr]
[td]11[/td]
[td]\$31.65[/td]
[/tr]
[tr]
[td]12[/td]
[td]\$33.00[/td]
[/tr]
[/table]
 
Thanks very much for that.. Very neat explanation.