Rule of 72 Calculator
Free Rule of 72 calculator. Estimate how long it takes money to double at any growth rate, or the rate needed to double in a target number of years.
Rule of 72 Calculator
Background.
The Rule of 72 calculator is the fastest sanity check in personal finance: divide 72 by an annual growth rate and you have a usable estimate of how many years it takes for money to double. Plug in 6% and you get 12 years. Plug in 9% and you get 8 years. Plug in 24% — the APR on a typical store credit card — and you get 3 years for the balance to double against you. The shortcut is so cheap and so portable that professional investors, central bankers, and economics teachers have used it for at least five centuries, and it still beats reaching for a calculator app when you want to size up a long-horizon decision on the spot.
This Quanta tool implements both directions of the rule and pairs each with the exact compound-math answer so you can see, in the same view, how accurate the approximation actually is for the inputs you care about. In years mode, you enter an annual rate and the calculator returns the rule-of-N doubling time plus the closed-form exact result ln(2) / ln(1 + r/100). In rate mode, you enter a target horizon and the calculator returns the divisor-over-years estimate plus the closed-form exact rate (2^(1/n) − 1) × 100. You can switch the divisor between 70, 72, 73, and the continuous-compounding limit of 69.3 (which equals ln(2) × 100) to see how the choice of constant trades accuracy at low rates against accuracy at high rates.
Why 72 instead of the mathematically purer 69.3? The number 72 is a deliberate compromise. It is close enough to the continuous-compounding constant 69.3 to be accurate within about 3% across the 4–12% range that covers most real-world investing scenarios, and it divides cleanly by 1, 2, 3, 4, 6, 8, 9, and 12 — which made it the obvious choice in pre-calculator centuries when mental arithmetic was the only arithmetic available. Luca Pacioli, the Franciscan friar whose 1494 Summa de Arithmetica taught Europe double-entry bookkeeping, already cited the Rule of 72 as a known shortcut among Venetian merchants — meaning the trick predates the printing press, predates the slide rule, and certainly predates the spreadsheet.
The Rule of 72 also has a beautifully underappreciated second life: it works for any compounding process, not just investment returns. Drop your country's inflation rate into the calculator and you get the number of years until prices double — at 3% U.S. CPI inflation, that is 24 years; at 8% inflation, only 9 years. Drop in GDP growth and you get the doubling time of national income. Drop in the negative of a return and you get the halving time of a depreciating asset or a shrinking population. Anywhere a quantity grows or shrinks at a roughly constant percentage rate per period, the rule applies — and that covers an enormous slice of finance, economics, demography, and even epidemiology.
The trade-off is accuracy. The Rule of 72 is a first-order Taylor approximation around a particular rate, and its error grows roughly quadratically as the rate moves away from that anchor. At 2% the rule says 36 years; the exact answer is 35.0, so the rule is off by about 2.9%. At 8% the rule says 9 years; the exact answer is 9.006, an error under 0.1%. At 25% the rule says 2.88 years; the exact answer is 3.11, an error near 7%. The calculator surfaces this error explicitly so you never quote the shortcut answer in a context where it actually matters.
Below the widget you will find a full breakdown of where the constant 72 comes from mathematically, a worked example using two of the most common inputs in personal finance, eight long-tail FAQs that answer real search queries, and primary-source citations going all the way back to Pacioli's 1494 text. Use the rule as a mental shortcut, but use the calculator as the source of truth.
What is rule of 72 calculator?
The Rule of 72 is a mental-arithmetic shortcut that estimates the number of years it takes a quantity growing at a fixed annual compound rate to double. Divide 72 by the percentage growth rate and you get the doubling time; divide 72 by the doubling time and you get the required rate. The rule is an approximation to the exact compound-interest doubling formula ln(2) / ln(1 + r/100) — which itself approaches ln(2) ≈ 0.6931 as the compounding frequency approaches continuous, giving rise to the related Rule of 69.3. The number 72 is preferred over 69.3 in practice because it is divisible by many small integers (1, 2, 3, 4, 6, 8, 9, 12) and because its error is smallest in the 6–10% range where most real-world investment returns and economic growth rates actually sit. The rule applies to any compound process: investment returns, inflation, GDP growth, population growth, and even epidemic spread in the early exponential phase. It also runs in reverse — divide 72 by a negative growth rate and you get a halving time for a depreciating asset, a shrinking population, or purchasing power eroded by inflation.
How to use this calculator.
- Choose what you want to solve for. Pick 'Years to double' if you know a growth rate and want to find the time horizon; pick 'Rate required' if you know your target horizon and want to find the rate.
- If solving for years, enter the Annual Growth Rate as a percentage — for example 7 for a long-term U.S. equity assumption, 3 for typical inflation, or 22 for a credit-card APR.
- If solving for the rate, enter the Years to Double — for example 10 for a typical career-stage savings goal, or 20 for an inflation-doubling reference point.
- Pick the Divisor. Stick with 72 for general use. Switch to 70 if you are working with low rates (under 6%, such as bond yields or inflation) where 70 is slightly more accurate. Switch to 73 for high rates above roughly 12%. The 69.3 option matches the exact answer for continuous compounding.
- Read the primary output — Years to Double or Rate Required — and compare it against the Exact Years or Exact Rate to see how close the shortcut is. The Approximation Error tells you, as a signed percent, whether the rule is overstating or understating the true compound answer.
- Use the result as a mental anchor: a 7% rate doubles in roughly a decade, a 10% rate doubles in roughly 7 years, and a 3% inflation rate halves your purchasing power roughly every 24 years.
The formula.
The Rule of 72 is built on a Taylor-series approximation of the exact compound-doubling equation (1 + r/100)^n = 2. Taking natural logarithms of both sides gives n × ln(1 + r/100) = ln(2), so the exact doubling time is n_exact = ln(2) / ln(1 + r/100). For small values of r/100, the Taylor expansion of ln(1 + x) ≈ x − x²/2 + x³/3 − …, so to first order ln(1 + r/100) ≈ r/100, and the doubling equation collapses to n × (r/100) ≈ ln(2), or n × r ≈ 100 × ln(2) ≈ 69.3. That is the Rule of 69.3 — exact for continuous compounding but slightly off for annual compounding because the linear approximation drops the second-order term. Rounding 69.3 upward to 72 introduces a deliberate compensating bias that absorbs much of the dropped second-order error in the 6–10% range while preserving the divisibility properties that make 72 a mental-arithmetic-friendly number (72 = 2³ × 3²). This calculator therefore computes four values. The Rule-of-N estimate uses the shortcut directly: yearsToDouble = divisor / r, or rateRequired = divisor / years. The exact compound result uses the closed-form solution: exactYears = ln(2) / ln(1 + r/100), and exactRate = (2^(1/n) − 1) × 100. The approximation error is the signed percent gap: (rule − exact) / exact × 100. Two facts about the error are worth remembering. First, the error grows roughly quadratically with the distance from the anchor rate — it is under 1% across the 6–10% band, around 3% near 2%, and approaches 7–10% near 25%. Second, the sign of the error depends on which divisor you pick: 72 slightly overstates the doubling time for high rates (so reality is slightly faster than the rule says) and slightly understates for very low rates. For halving times of a quantity shrinking at rate r, you use exactly the same formula on the absolute value of the rate — money losing 3% per year to inflation halves its purchasing power in roughly 72 / 3 = 24 years.
A worked example.
Suppose a 30-year-old has $25,000 invested in a balanced index portfolio expected to compound at 6% per year and wants a back-of-the-envelope answer to 'when does this double?' Enter 6 as the annual rate, leave the divisor at 72, and the calculator returns 12.00 years for the Rule-of-72 shortcut. The Exact Years (Compound) cell reads 11.896 years — the rule overstates the doubling time by about 0.04 years, or roughly 0.87% (the Approximation Error output). In practical terms: the $25,000 becomes $50,000 by age 42, and another doubling to $100,000 lands by age 54 — close enough to plan against without ever opening a spreadsheet. Now consider a higher rate. Enter 9% instead of 6%. The rule says 72 / 9 = 8 years; the exact compound answer is 8.0432 years, an error of −0.54% (the rule slightly understates). At a 24% credit-card APR, the rule says 72 / 24 = 3 years; the exact answer is 3.22 years, an error of −6.81%. That last case is where the rule starts to mislead — at high rates the linear approximation breaks down and the calculator's Exact Years column becomes the number you should actually quote. Finally, run the rule in reverse for inflation: at 3% CPI inflation, your purchasing power halves in 72 / 3 = 24 years (exact: 23.45), so a dollar today buys about half as much by 2050. The Rule of 72 is the same arithmetic in every case — only the interpretation changes.
Frequently asked questions.
Where does the number 72 in the Rule of 72 actually come from?
Rule of 70 vs Rule of 72 vs Rule of 73 — which one should I use?
How accurate is the Rule of 72?
How long until inflation cuts my money in half?
Can the Rule of 72 calculate halving time as well as doubling time?
Why does the Rule of 72 break down at very high interest rates?
Does the Rule of 72 work for continuously compounded rates?
Can I use the Rule of 72 in reverse to find a required return?
References& sources.
- [1]Luca Pacioli (1494). Summa de Arithmetica, Geometria, Proportioni et Proportionalita. Venice: Paganino de Paganini. The earliest documented reference to the Rule of 72 as a known shortcut among Venetian merchants, predating its later popularization in modern finance textbooks.
- [2]Felicia M. Lewins (1980). 'The Rule of 72: A Mathematical Curiosity.' BSHM Bulletin: Journal of the British Society for the History of Mathematics / Information Sciences, Vol. 1, pp. 147–148. Derives the rule from the Taylor expansion of ln(1 + r) and analyses its error profile across the practical range of rates.
- [3]Bodie, Z., Kane, A., and Marcus, A. J. (2021). Investments, 12th edition. McGraw-Hill Education, §5: Risk and Return. The canonical graduate-level investments text — discusses the Rule of 72 as the standard mental shortcut for compound doubling and pairs it with the exact ln(2) / ln(1 + r) formula.
- [4]Investopedia — Rule of 72 (reviewed by certified financial planners). Practitioner reference covering the rule's history, accuracy, and reverse application to find required return given a doubling horizon.
- [5]U.S. Securities and Exchange Commission, Investor.gov — Compound Interest: foundational explainer that motivates why a doubling-time shortcut is useful for long-horizon planning.
- [6]Federal Reserve Bank of St. Louis, FRED — Consumer Price Index for All Urban Consumers (CPIAUCSL). Used as the historical inflation series for the Rule-of-72 inflation-doubling examples in the calculator narrative.
In this category
Embed
Quanta Pro
Paid features are coming later.
- All 313 calculators remain free
- No billing is enabled