Lesson 12 of 15

Continuous Compounding

Continuous Compounding

Continuous compounding is the limit of compounding nn times per year as nn \to \infty:

limn(1+rn)nt=ert\lim_{n \to \infty} \left(1 + \frac{r}{n}\right)^{nt} = e^{rt}

Continuous Future Value & Present Value

FV=PVertFV = PV \cdot e^{rt} PV=FVertPV = FV \cdot e^{-rt}

This is widely used in derivatives pricing, stochastic calculus, and option theory.

Converting Between Rates

A discrete rate rdr_d compounded nn times per year is equivalent to continuous rate rcr_c:

rc=nln(1+rdn)r_c = n \cdot \ln\left(1 + \frac{r_d}{n}\right)

For annual compounding (n=1n = 1): rc=ln(1+rd)r_c = \ln(1 + r_d)

Example

1000 invested at 5% continuously for 2 years: $$FV = 1000 \cdot e^{0.05 \times 2} = 1000 \cdot e^{0.1} \approx \1105.17$$

Use Python's math.exp() and math.log() functions.

Python runtime loading...
Loading...
Click "Run" to execute your code.