easwee.net // tiny digital playground

five financial equations cheatsheet

Sometimes I read something useful that is worth noting down for myself as a reminder to get back on track.

1. Compound Growth #

FV=PV(1+r)nFV = PV(1+r)^n

Purpose: Calculates what money invested today will become after compounding over time. Both time and the rate of return affect how quickly the money grows.

Layman terms: Your money earns money, and then the new money also starts earning money. It is like a snowball rolling downhill: the longer it rolls, the larger it becomes.

Example:

You invest $1,000 and earn 8% per year for 10 years:

FV=1,000(1+0.08)10FV = 1{,}000(1+0.08)^{10}

FV$2,159FV \approx \$2{,}159

Your original $1,000 grows to about $2,159 without adding any more money.


2. Rule of 72 #

Doubling time in years72r%\text{Doubling time in years} \approx \frac{72}{r_{\%}}

Purpose: Quickly estimates how long an investment, debt balance, price level, or other growing quantity will take to double at a given annual percentage rate.

Layman terms: Divide 72 by the yearly growth rate to estimate how many years it will take for something to become twice as large.

Example:

At an 8% annual return:

728=9\frac{72}{8}=9

Your money will take approximately nine years to double.

A $10,000 investment earning roughly 8% per year would therefore grow to about $20,000 in nine years.

The Rule of 72 is a quick estimate, not an exact calculation.


3. Present Value #

PV=FV(1+r)nPV = \frac{FV}{(1+r)^n}

Purpose: Converts a future amount of money into its equivalent value today. It is the compound-growth equation run backwards.

Layman terms: Money received in the future is worth less than money received today because money available today can be invested and allowed to grow.

Example:

Someone offers to pay you $10,000 in five years. Assuming you could earn 8% per year elsewhere:

PV=10,000(1+0.08)5PV = \frac{10{,}000}{(1+0.08)^5}

PV$6,806PV \approx \$6{,}806

Receiving $10,000 in five years is financially equivalent to receiving approximately $6,806 today, assuming an 8% annual return.


4. Geometric Mean Return #

rg=[i=1n(1+ri)]1/n1r_g = \left[ \prod_{i=1}^{n}(1+r_i) \right]^{1/n}-1

Purpose: Calculates the average compounded return across multiple periods. Unlike a simple arithmetic average, it correctly accounts for compounding, volatility, and investment losses.

Layman terms: This tells you the steady yearly return that would have produced the same final result as the actual sequence of gains and losses.

Example:

Suppose an investment:

The simple arithmetic average is:

50%+(50%)2=0%\frac{50\%+(-50\%)}{2}=0\%

That result is misleading. Starting with $100:

$100×1.50=$150\$100 \times 1.50 = \$150

Then:

$150×0.50=$75\$150 \times 0.50 = \$75

You finished with $75, meaning you lost 25% overall.

The geometric mean return is:

rg=[(1.50)(0.50)]1/21r_g = \left[(1.50)(0.50)\right]^{1/2}-1

rg13.4%r_g \approx -13.4\%

The investment performed as though it had lost approximately 13.4% per year for two years.

Spreadsheet form:

=GEOMEAN(1 + returns) - 1

Multiply all period growth factors, take the nn-th root, and then subtract 11.


5. Real Return #

rrealrnominalπr_{\text{real}} \approx r_{\text{nominal}}-\pi

Purpose: Estimates how much your purchasing power increased after accounting for inflation.

Layman terms: Your account balance may be increasing, but rising prices reduce what that money can actually buy. Real return measures whether you are genuinely becoming wealthier after inflation.

Example:

Your investment earns 10%, while inflation is 3%:

rreal10%3%=7%r_{\text{real}} \approx 10\%-3\%=7\%

Your account grew by 10%, but your purchasing power increased by only approximately 7%.

For example, if you began with $10,000:

This subtraction formula is an approximation. The exact real-return formula is:

rreal=1+rnominal1+π1r_{\text{real}} = \frac{1+r_{\text{nominal}}}{1+\pi}-1

Using a 10% nominal return and 3% inflation:

rreal=1.101.0316.8%r_{\text{real}} = \frac{1.10}{1.03}-1 \approx 6.8\%


Symbols #

Symbol Meaning
FVFV Future value
PVPV Present value
rr Return or interest rate expressed as a decimal
r%r_{\%} Return or interest rate expressed as a percentage
nn Number of periods
rir_i Return during period ii
rgr_g Geometric mean return
π\pi Inflation rate

From @lumenxbt