How to convert continuous interest compounding rate to non-compounding rate?

137 Views Asked by At

Let's say we are told that a bank offers an annual interest yield of 50%, and it is automatically compounded by the bank. Assume the compounding is done continuously rather than in discreet intervals.

How can we calculate what the yield would be after one year if the interest wasn't compounded? In other words, interest is taken out of the bank at infinitesimal intervals such that there is no compounding effect.

I would like to be able to calculate this at no knowledge of how often the bank actually compounds interest, so this is why I am assuming continuous compounding and infinitesimal intervals of taking out the interest.

The purpose of this question is for two potential situations:

  • To calculate what the theoretical worst-case scenario yield would be if you were taking out interest regularly, and,
  • To calculate what the yield would be should a bank add in some sort of a limit to how much money interest can be earned on (so once this limit is hit, it is no longer compounding anymore).
1

There are 1 best solutions below

2
On BEST ANSWER

This question is getting at the relationship between annual percentage rate (APR) and annual percentage yield (APY). Generally, APR is the rate before taking into account compounding, and APY is after compounding.

In this case, we're given an annual percentage yield of $50\%$, compounded continuously. As noted in the comments, the formula for continuous compounding is $P(t) = P_0 e^{rt}$, where $P_0$ is initial principal, $P(t)$ is principal at time $t$, and $r$ is the interest rate, specifically APR, per unit of $t$.

Let $y$ represent the APY. Then, after $1$ year of compounding continuously, we have $P(1) = (1+y)\cdot P_0$. Substituting that into the formula for continuous compounding, we have

$$ (1+y)P_0 = P_0e^{r\cdot 1} $$ $$ \Rightarrow (1+y) = e^{r} $$ $$ \Rightarrow r = \ln(1+y) $$

So, the general relationship for continuously compounded interest is $APR = \ln(1+APY) $.

In this case, with an APY of $50\%$, we have

$$ r = \ln(1+y) = \ln(1.5) \approx 40.55\% $$

In the case when it's not compounded continuously, but rather in discrete intervals, there's a similar process you can follow. Let's say interest is compounded $n$ times per unit of $t$. Then, we have

$$ P(t) = P_0\left(1+\frac{r}{n}\right)^{nt} $$ $$ \Rightarrow P(1) = P_0\left(1+\frac{r}{n}\right)^{n} $$ $$ \Rightarrow (1+y)P_0 = P_0\left(1+\frac{r}{n}\right)^{n} $$ $$ \Rightarrow (1+y) = \left(1+\frac{r}{n}\right)^{n} $$ $$ \Rightarrow (1+y)^{1/n} = 1+\frac{r}{n} $$ $$ \Rightarrow r = n\left((1+y)^{1/n} - 1\right) $$