How to Calculate Terminal Value Growth Rate

Implied Terminal Growth Rate Calculator

The projected cash flow for the last year of your explicit forecast period.
The value assigned to the business at the end of the forecast (usually from an exit multiple).
The Weighted Average Cost of Capital used in your DCF model.
Implied Perpetuity Growth Rate:
function calculateTerminalGrowth() { var fcf = parseFloat(document.getElementById('fcf_val').value); var tv = parseFloat(document.getElementById('tv_val').value); var wacc = parseFloat(document.getElementById('wacc_val').value) / 100; var resultDiv = document.getElementById('result_area'); var growthSpan = document.getElementById('growth_result'); if (isNaN(fcf) || isNaN(tv) || isNaN(wacc)) { alert("Please enter valid numerical values for all fields."); return; } if (tv <= 0) { alert("Terminal Value must be greater than zero."); return; } // Formula for implied growth rate g: // TV = [FCFn * (1 + g)] / (WACC – g) // TV * (WACC – g) = FCFn + (FCFn * g) // (TV * WACC) – (TV * g) = FCFn + (FCFn * g) // (TV * WACC) – FCFn = (FCFn * g) + (TV * g) // (TV * WACC) – FCFn = g * (FCFn + TV) // g = [(TV * WACC) – FCFn] / (TV + FCFn) var g = ((tv * wacc) – fcf) / (tv + fcf); var gPercentage = (g * 100).toFixed(2); growthSpan.innerHTML = gPercentage + "%"; resultDiv.style.display = "block"; resultDiv.style.backgroundColor = "#e8f8f5"; resultDiv.style.border = "1px solid #27ae60"; }

Understanding the Terminal Value Growth Rate

In financial modeling, specifically in a Discounted Cash Flow (DCF) analysis, the Terminal Value represents the value of a business beyond the explicit forecast period. Because a company is assumed to operate indefinitely, we use a Perpetuity Growth Rate to estimate its value into infinity.

The Gordon Growth Method

The most common way to calculate Terminal Value is the Gordon Growth Method. The formula is:

Terminal Value = [FCFn × (1 + g)] / (WACC – g)

  • FCFn: Free Cash Flow of the final projected year.
  • g: The stable perpetuity growth rate.
  • WACC: Weighted Average Cost of Capital (Discount Rate).

Why Calculate the Implied Growth Rate?

Often, analysts calculate Terminal Value using the "Exit Multiple Method" (e.g., 10x EBITDA). However, it is a crucial "sanity check" to see what growth rate that multiple implies. If your exit multiple suggests an implied growth rate of 6%, but the overall economy is only growing at 2%, your valuation might be aggressively optimistic. Historically, a sustainable terminal growth rate should be equal to or less than the long-term GDP growth rate or the inflation rate.

Practical Example

Imagine a company with the following financials:

  • Final Year FCF (Year 5): $500,000
  • WACC: 9%
  • Estimated Terminal Value (via 12x Multiple): $8,000,000

Using our calculator:

  1. (8,000,000 × 0.09) = 720,000
  2. 720,000 – 500,000 = 220,000
  3. 220,000 / (8,000,000 + 500,000) = 0.0258
  4. Implied Growth Rate: 2.58%

In this scenario, a 2.58% growth rate is realistic as it aligns closely with historical inflation and GDP trends.

Common Pitfalls

  • Setting g > GDP: Mathematically, if a company grows faster than the economy forever, it will eventually become larger than the entire economy. Keep g conservative.
  • Setting g > WACC: If the growth rate exceeds the discount rate, the formula breaks (results in a negative or infinite value).
  • Negative Cash Flow: If the final year FCF is negative, the perpetuity growth model is typically not applicable until the business reaches a steady state of positive cash flow.

Leave a Comment