CAGR Calculator (Compound Annual Growth Rate) — Notebook Template

Compute CAGR between two values over time. Includes a quick check for negative growth and edge cases.

finance cagr growth investing
All templates

What this template does

This is a ready-to-run GetCalcMaster Notebook starter. Open it into Notebook, run once with defaults, then tweak inputs and keep your assumptions next to the math.

How to use it (recommended)

  1. Open in Notebook.
  2. Enter start value, end value, and number of years.
  3. Compute CAGR and interpret as an annualized rate.
  4. Sanity check by reconstructing end ≈ start·(1+CAGR)^years.
  5. Snapshot the result with context.
Tip: When a result matters, verify it twice: a unit check + a second method (graph/estimate).

Preview (first cells)

This preview is for readability. The full template loads into Notebook when you click Open.

TEXT
# CAGR Calculator (Compound Annual Growth Rate)

Formula:

**CAGR = (End / Start)^(1/Years) − 1**

This produces an annualized rate that smooths growth over time.
MATH
start = 1000
MATH
end = 1750
MATH
years = 4
MATH
CAGR = (end / start)^(1/years) - 1
MATH
CAGR