1

I'm trying to find what percentage 5000 dollars compounding monthly over 120 months will be if the final sum will be 7000 dollars.

So: 7000=5000(1+r/12)^120

When working backwards to find r I always get the percentage = 0.2% but I did trial and error and know the actual answer is about 3.37%

How do I work backwards to find the correct r?

2 Answers2

1
A1 = A0 + rA0
A2 = A0 + rA0 + r(A0 + rA0)
   = A0(1 + r)^2

At = A0(1 + r)^t

(At/A0)^(1/t) - 1 = r

(7/5)^(1/10) - 1 = r = 0.0342

I calculated r using python3 (7/5)**(1/10) - 1.

1

We have $$1.4=\left(1+\frac{r}{12}\right)^{120}.$$ Now we can use a calculator to find $(1.4)^{1/120}$. I get about $1.0028079$. Subtract $1$, multiply by $12$. I get about $0.0336944$.

Remarks: $1.$ I did this on an ordinary calculator. But it could also have been done by Google. Just type in (1.4)^(1/120). It gives $1.00280787001$.

You can even let Google do the whole calculation. Type in 12*((1.4)^(1/120)-1).

$2.$ Note that we have calculated the nominal annual rate $r$. The effective annual rate is somewhat larger. It is $\left(1+\frac{r}{12}\right)^{12}-1$. In our case, to find the effective annual rate, we do not need to compute $r$. We can simply find $(1.4)^{1/10}-1$. This turns out to be about $0.0342197$. The difference between nominal and effective becomes significantly larger when interest rates are high.

André Nicolas
  • 507,029
  • That's the monthly rate. I assumed the OP wanted the annual rate. –  Aug 19 '14 at 06:45
  • The formula OP was using is consistent with $r$ being the nominal annual rate. In this case that is about $3.37%$. (The effective annual rate is somewhat larger.) – André Nicolas Aug 19 '14 at 06:50
  • IMO That's just plain wrong. –  Aug 19 '14 at 06:53
  • I am not fond of nominal annual rate, since it is misleading. Many jurisdictions have laws that demand that somewhere prominent the effective rate be mentioned. Perhaps I will add a comment, since it may be interesting to the OP. – André Nicolas Aug 19 '14 at 06:59
  • Now I understand! It's a social convention. –  Aug 19 '14 at 07:07
  • I needed the nominal rate but the effective rate is interesting, thank you for sharing. – shalorsar Aug 19 '14 at 09:45