Continuous Compounding
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://calcfyi.com/iframe/entity//" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://calcfyi.com/entity//
Add a dynamic SVG badge to your README or docs.
[](https://calcfyi.com/entity//)
Use the native HTML custom element.
Variables
| Symbol | Name | Unit | Description |
|---|---|---|---|
| $A$ | Final amount | currency | Total value after continuous compounding. |
| $P$ | Principal | currency | Initial investment amount. |
| $e$ | Euler's number | dimensionless | Mathematical constant ≈ 2.71828. |
| $r$ | Annual interest rate | decimal | Nominal annual interest rate as a decimal. |
| $t$ | Time | years | Duration in years. |
Continuous Compounding
Continuous compounding is the mathematical limit of compound interest as the compounding frequency approaches infinity:
$$A = Pe^{rt}$$
Here, e ≈ 2.71828 is Euler's number, r is the nominal annual rate, and t is time in years.
Why It Matters Mathematically
The standard compound interest formula A = P(1 + r/n)^(nt) approaches Pe^(rt) as n → ∞:
$$\lim_{n \to \infty} P\left(1 + \frac{r}{n}\right)^{nt} = Pe^{rt}$$
This is the most any principal can grow at a given nominal rate — the upper bound of compounding.
Practical Difference
At 6% annual rate on $10,000:
| Frequency | Final amount (10 years) |
|---|---|
| Annual | $17,908 |
| Monthly | $18,194 |
| Daily | $18,220 |
| Continuous | $18,221 |
The difference between daily and continuous is less than $1. Continuous compounding is used primarily for mathematical elegance, not because it yields dramatically different results.
Where It Is Actually Used
- Options pricing: The Black-Scholes model uses continuous compounding to model stock prices (geometric Brownian motion)
- Bond yield calculations: Continuously compounded yields simplify duration and convexity mathematics
- Physics and biology: Population growth, radioactive decay, and pharmacokinetics all use the same e^(rt) model
- Actuarial science: Force of interest (δ = ln(1+i)) is the continuous analog of discrete interest rate i
Derivation & History
Jacob Bernoulli (1655–1705) investigated the limit of (1 + 1/n)^n as n → ∞ while studying compound interest, discovering that it converged to a constant he could not name. Leonhard Euler later identified this constant as e ≈ 2.71828 and proved it was irrational. Euler formalised the notation e and established e^x as the unique function equal to its own derivative — a property that makes continuous exponential growth models mathematically elegant and analytically tractable in calculus-based finance and science.
Worked Examples
Investment for 5 years
- A = 1000 × e^(0.08 × 5)
- A = 1000 × e^0.4
- A = 1000 × 1.4918
- A = $1,491.82
Result: $1,491.82 — compare to annual compounding: $1,469.33
Finding time to a target
- 10,000 = 5,000 × e^(0.06t)
- 2 = e^(0.06t)
- ln(2) = 0.06t
- t = 0.6931 / 0.06 = 11.55 years
Result: 11.55 years to double at 6% continuously compounded
Edge Cases & Limitations
Negative r: Models exponential decay (depreciation, radioactive decay, drug elimination); A < P.
Large t: Exponential growth is unbounded mathematically but physically constrained by resources — the formula is most reliable for moderate t values.
APY vs continuous rate: Converting continuous rate r to APY: APY = e^r − 1. At r = 6%, APY = e^0.06 − 1 = 6.184%.
Real-World Applications
Black-Scholes options pricing (used by every major derivatives desk globally) is built on continuous compounding. Bond mathematics uses continuously compounded yields to simplify duration calculations. Population ecology models species growth using A = Pe^(rt). Pharmacokinetics models drug elimination from the body as C = C₀e^(−kt). Nuclear physics uses the same formula for radioactive decay. The universality of e^(rt) across disciplines makes continuous compounding one of the most powerful mathematical models in science.