APR vs Effective Annual Rate (EAR) — Notebook Template

Convert nominal APR to effective annual rate (EAR) given compounding frequency. Useful for apples-to-apples comparisons.

finance apr effective-rate interest
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 nominal APR and compounding periods per year.
  3. Compute EAR and compare across offers.
  4. Sanity check: EAR should be ≥ APR when compounding > 1/year.
  5. Record assumptions (compounding, fees, promos).
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
# APR → Effective Annual Rate (EAR)

Nominal APR can be misleading when compounding differs.

If APR is compounded **m** times per year:

**EAR = (1 + APR/m)^m − 1**
MATH
APR = 0.18
MATH
m = 12   # compounds per year (12 = monthly)
MATH
EAR = (1 + APR/m)^m - 1
MATH
EAR
MATH
# Compare: if m=1 then EAR=APR