Implied Perpetuity Growth Rate Calculation

Implied Perpetuity Growth Rate Calculator

Results

function calculateImpliedGrowth() { var terminalValue = parseFloat(document.getElementById("terminalValue").value); var finalFCF = parseFloat(document.getElementById("finalFCF").value); var waccPercent = parseFloat(document.getElementById("wacc").value); var resultArea = document.getElementById("resultArea"); var growthResult = document.getElementById("growthResult"); var interpretation = document.getElementById("interpretation"); if (isNaN(terminalValue) || isNaN(finalFCF) || isNaN(waccPercent) || terminalValue 4) { note = "Warning: An implied growth rate above 4% is often considered aggressive, as it exceeds the long-term historical GDP growth of most developed economies."; } else if (impliedGPercent < 0) { note = "The implied growth rate is negative. This suggests the terminal value might be undervalued relative to the cash flows and WACC provided, or the business is expected to decline in perpetuity."; } else { note = "This implied growth rate is within a typical range (2% – 4%) for stable, mature companies in a DCF valuation."; } interpretation.innerHTML = "Interpretation: " + note; }

Understanding the Implied Perpetuity Growth Rate

In financial modeling and equity research, the Implied Perpetuity Growth Rate serves as a critical "sanity check" for a Discounted Cash Flow (DCF) valuation. When an analyst calculates the Terminal Value of a business—often using the Exit Multiple Method—it is essential to determine what perpetual growth rate is embedded within that valuation.

The Importance of the Calculation

A DCF model is highly sensitive to its terminal value, which often accounts for 60% to 80% of the total enterprise value. If you use an exit multiple (like EV/EBITDA) to calculate the terminal value, the implied perpetuity growth rate tells you how fast the company must grow forever to justify that multiple. If the result is 8%, but the global economy is only growing at 3%, your valuation is likely unrealistic.

The Mathematical Formula

The calculation is derived by rearranging the Gordon Growth Model formula:

g = [(Terminal Value × WACC) – Final Year FCF] / (Terminal Value + Final Year FCF)

Where:

  • Terminal Value: The estimated value of the company at the end of the projection period.
  • WACC: The Weighted Average Cost of Capital (the discount rate).
  • Final Year FCF: The Free Cash Flow generated in the last year of the discrete forecast period.

Practical Example

Imagine you are valuing a software company. Your DCF model projections end in Year 5, where the company generates $250,000 in Free Cash Flow. Based on comparable companies, you assign a Terminal Value of $5,000,000. Your calculated WACC is 8.5%.

Using the formula:

  • TV × WACC = $5,000,000 × 0.085 = $425,000
  • Numerator: $425,000 – $250,000 = $175,000
  • Denominator: $5,000,000 + $250,000 = $5,250,000
  • Implied Growth Rate: $175,000 / $5,250,000 = 3.33%

In this case, a 3.33% growth rate is generally considered reasonable as it aligns closely with long-term inflation and GDP growth expectations.

Key Benchmarks for Analysis

When analyzing your results, consider these general rules of thumb:

  1. 0% – 2%: Very conservative; assumes the company grows slower than the overall economy.
  2. 2% – 4%: Standard range; aligns with long-term GDP growth and inflation.
  3. Above 5%: Aggressive; implies the company will eventually become larger than the entire economy if maintained forever.
  4. Negative Growth: Suggests the company is in a terminal decline or the exit multiple used was too low.

Leave a Comment