Explore the advanced H-Model approach for dividend valuation, focusing on a gradual shift from high to stable growth. Learn its assumptions, formula derivation, limitations, and practical applications.
The H-Model is a nuanced take on dividend discount models (DDMs). Many of us get comfortable with the Gordon Growth Model (the “single-stage DDM”), which assumes a constant dividend growth rate forever. But, in the real world, companies often go through transitions. Maybe they start growing like wildfire—10% or more—then slow down to a modest 3 or 4% once they mature. If you’ve ever analyzed a young tech company turned stalwart, you’ve witnessed that exact pattern. The high growth rate doesn’t vanish overnight; it gradually tapers off. The H-Model helps us capture that smooth shift from high growth (gₕ) to lower, stable growth (gₗ) over a specific transition period.
Before diving into the formula, it’s good to recall that all DDMs rest on the premise that the intrinsic value of a stock stems from the present value of its future dividends. The big difference with the H-Model is that the expected growth rate isn’t immediately or uniformly “stable,” but rather decays linearly over time.
• gₕ (High Growth Rate): The initial, elevated dividend growth in the near term.
• gₗ (Low or Stable Growth Rate): The more sustainable, long-run growth rate the firm eventually adopts.
• H (Half-Life Parameter): Usually half the number of years of the transition period. If you anticipate the high-growth phase to fade over 10 years, H is 5.
The standard H-Model formula values the stock as follows:
where:
• D₀ = The current dividend (most recent).
• r = Required rate of return (or cost of equity).
• gₕ = High growth rate in the near term.
• gₗ = Long-term stable growth rate.
• H = (Years of transition) / 2.
In plain English, this formula is actually two parts. The first part, (D₀ × (1 + gₗ)) / (r – gₗ), is like a Gordon Growth Model assuming the lower, stable growth rate. The second part, (D₀ × H × (gₕ – gₗ)) / (r – gₗ), adds the extra “oomph” from the gradual decline from gₕ to gₗ.
If you’ve used a two-stage model that abruptly transitions from gₕ to gₗ, you might notice how unrealistic a sudden “switch” can feel. A lot of real companies don’t just slip from 10% growth in year 4 to 3% in year 5 with no middle ground. The H-Model tries to smooth that out, effectively saying, “We assume a linear path from that 10% to 3% over X years.” Think of it almost like slicing up the difference (gₕ – gₗ) across the transitional period so that each year the growth rate shifts slightly downward, meeting gₗ by the end.
Frankly, I’ve found this approach super helpful with cyclical companies that come out of a boom phase—they won’t sustain that big 12% growth once industry tailwinds slow, but they also won’t typically plummet to 3% next fiscal year. You can imagine a linear fade from 12% in Year 1 to 3% by Year 6 or 7, or however you see the transition unfolding.
Conceptually, the H-Model can be derived by imagining a short series of simple DDM sub-periods that gradually reduce from gₕ to gₗ. Summing all these sub-period present values yields an (almost) closed-form expression. The “almost” part is because we treat the decline as perfectly linear, which, in practice, might only be approximately true.
Let’s do a quick hypothetical scenario:
• D₀ = $2.00
• High Growth Rate (gₕ) = 9%
• Stable Growth Rate (gₗ) = 3%
• Required Rate of Return (r) = 10%
• Transition Period = 10 years (so H = 5)
Following the formula:
First, compute the baseline value if the firm’s dividends grew at gₗ forever:
(D₀ × (1 + gₗ)) / (r – gₗ) = (2.00 × (1 + 0.03)) / (0.10 – 0.03)
= (2.00 × 1.03) / 0.07
= 2.06 / 0.07
= $29.43
Then, calculate the “extra” component from the linear fade:
(D₀ × H × (gₕ – gₗ)) / (r – gₗ) = (2.00 × 5 × (0.09 – 0.03)) / (0.10 – 0.03)
= (2.00 × 5 × 0.06) / 0.07
= (2.00 × 5 × 0.06) = 0.60 × 5 = 3.00
Actually let’s do it step by step: 2.00 × 5 = 10, multiplied by 0.06 = 0.60, oh wait, that’s an inconsistency—let’s do it carefully.
2.00 × 0.06 = 0.12, times 5 = 0.60. Right, so the numerator is 0.60.
Then 0.60 / 0.07 = approximately 8.57
So, total value ≈ 29.43 + 8.57 = $38.00 (rounded a little).
This $38 is an estimate that acknowledges the reality that dividend growth will gradually descend from 9% to 3%. You might compare it to a simple two-stage model or alternative multi-stage approaches for sanity checks.
Below is a simple timeline visualization of how the growth rate transitions from gₕ to gₗ. Notice the linear fade:
graph LR A["Start <br/> Year 0 <br/> High Growth g<sub>h</sub>"] --> B["Year 1 <br/> Growth: g<sub>h</sub> - portion"] B --> C["Mid Transition <br/> Growth: between g<sub>h</sub> and g<sub>l</sub>"] C --> D["Year T <br/> Growth: g<sub>l</sub>"]
For those who prefer a quick computational approach, here’s a tiny Python snippet that calculates the H-Model price:
1def h_model_value(D0, g_high, g_low, r, transition_years):
2 """
3 Returns the estimated stock value using the H-Model.
4 D0: current dividend
5 g_high: high growth rate
6 g_low: low (stable) growth rate
7 r: required rate of return
8 transition_years: total years over which high growth transitions to low growth
9 """
10 H = transition_years / 2.0
11 # Part 1: Base Gordon Growth component at g_low
12 base = (D0 * (1 + g_low)) / (r - g_low)
13 # Part 2: Additional fade-in from high growth to low growth
14 fade = (D0 * H * (g_high - g_low)) / (r - g_low)
15 return base + fade
16
17D0_example = 2.00
18g_high_example = 0.09
19g_low_example = 0.03
20r_example = 0.10
21transition_years_example = 10
22
23value_estimate = h_model_value(D0_example, g_high_example, g_low_example,
24 r_example, transition_years_example)
25
26print(f"The estimated value is: ${value_estimate:.2f}")
• Sensitivity to Inputs: The H-Model can be sensitive to the difference between gₕ and gₗ. If that gap is huge, the second term can heavily outweigh the first, making your valuation vulnerable to small errors in growth projections.
• Transition Length Guess: We’re forced to pick how long the high growth will last. If we guess incorrectly, the model can overshoot or undershoot the true value.
• Linear Assumption: Real businesses rarely proceed in perfect lines. If actual growth curves are more “step-like” or “uneven,” the H-Model might not capture those nuances.
• The r – gₗ Constraint: Just like in other DDM approaches, you need r > gₗ for the model to make sense. If your stable growth rate somehow matches or exceeds r, you’ll either get nonsensical or infinity-like valuations.
• Cross-Check with Other Models: Often, analysts compare H-Model valuations to those from two- or three-stage DDMs. If the results diverge wildly, ask why.
• Combine with Qualitative Insights: Are there reasons to believe the firm’s growth rate might ramp down more (or less) steeply? Keep a watchful eye on company fundamentals, management guidance, and industry outlook.
• Keep Revisit Intervals Short: Revisit your H-Model assumptions regularly—dividend policies and growth patterns can shift faster than you think.
I once worked on a manufacturing company that had an unusually long fade from a robust 15% growth down to a modest 5%. Manufacturing expansions can be steady, but it turned out their shift to stable growth took over a decade because new technologies kept fueling moderate expansions. The H-Model was super helpful because it let me spread that higher growth out over a lengthier runway. Some old-school colleagues asked, “Why not just pick a simpler two-stage model?” Well, we did that too, just to compare. And guess what? The two-stage model’s abrupt switch gave us a significantly lower valuation. The H-Model turned out to match actual dividend policy patterns closer because the “slope” downward in growth was more faithful to reality.
The H-Model is a handy approximate tool nested among other multi-stage dividend discount approaches. For more on multi-stage FCFE and advanced modeling, you might dip back to Section 9.8, “Multi-Stage FCFE Models with Changing Growth Patterns.” If you want to mix in capital structure changes, you’ll find the discussion on that in Chapter 9.2. Keep in mind, all these models rely on the same fundamental principle: the present value of expected future cash flows (or dividends). The more precise we get with growth assumptions, the closer we might come to a realistic fair value.
• CFA Institute Program Curriculum – Advanced Dividend Valuation Models.
• Pinto, Henry, Robinson, and Stowe, “Equity Asset Valuation” – Great for deeper H-Model excursions.
• Hackel and Livnat, “Cash Flow and Dividend Discount Models” – Insight into the reliability of DDMs in different market conditions.
• Damodaran, “Investment Valuation” – Among the best references for multi-stage valuations and real-world application tips.
Important Notice: FinancialAnalystGuide.com provides supplemental CFA study materials, including mock exams, sample exam questions, and other practice resources to aid your exam preparation. These resources are not affiliated with or endorsed by the CFA Institute. CFA® and Chartered Financial Analyst® are registered trademarks owned exclusively by CFA Institute. Our content is independent, and we do not guarantee exam success. CFA Institute does not endorse, promote, or warrant the accuracy or quality of our products.