#
#
#
#
#
#
#
#
#
#
L20_21: Dividend discount models
Dividend discount models (DDM)
The intrinsic value of the firm’s equity at time \(t\) (call it \(V_t\)) is the discounted value of all (expected) future dividends:
\[V_t = \frac{D_{t+1}}{1+r} + \frac{D_{t+2}}{(1+r)^2} + \frac{D_{t+3}}{(1+r)^3} + ...\]
or, equivalently
\[V_t = \frac{D_{t+1}}{1+r} + \frac{D_{t+2}}{(1+r)^2} + \frac{D_{t+3}}{(1+r)^3} + ... + \frac{D_{t+H} + P_{t+H}}{(1+r)^H}\]
where \(P_{t+H}\) (the price \(H\) periods from now) is often called the “terminal value” of the stock.
The discount rate \(r\) (sometimes called the market capitalization rate) is the expected return on the stock (or, equivalently, the firm’s cost of equity).
As we have seen, this is most commonly estimated using CAPM:
\[r = R_f + \beta \cdot (E[R_m] - R_f)\]
but other models may be used (e.g. the Fama-French Three-Factor model).
Constant-growth model
If we assume that dividends grow at a constat rate \(g\) for ever, then the valuation formula above becomes:
\[V_t = \frac{D_{t+1}}{r-g} \]
or, equivalently:
\[V_t = \frac{D_{t} \cdot (1 + g)}{r-g} \]
This is the present value of a growing perpetuity.
Example 1:
Assume the MSFT just paid a dividend of $2 per share, and that these dividends will grow at 6% per year in perpetuity. You have estimated that MSFT has a market beta of 1.1, and the market risk premium is 7% per year. The yield on a 1-year Tbill is 0.001. What is the estimated intrinsic value of one share of MSFT?
Multi-stage growth model
Here we estimate individually some finite number (\(H\)) of future dividends, and assume that after that, dividends grow at a constant rate \(g\) for ever. In this case, the valuation formula becomes:
\[V_t = \frac{D_{t+1}}{1+r} + \frac{D_{t+2}}{(1+r)^2} + \frac{D_{t+3}}{(1+r)^3} + ... + \frac{D_{t+H}}{(1+r)^H} + \frac{ D_{t+H} \cdot (1 + g) / (r-g)}{(1+r)^H}\]
The first \(H\) dividends can be estimated in a variety of ways. The most common methods include:
- Extrapolating the past dividend growth of the firm
- Applying the average dividend growth of comparable firms
- Applying the average dividend growth of the industry
Estimating the terminal growth rate
The terminal growth rate will have a significant influence on our results, so we have to be very careful when we estimate it. A common aproach is to use a “fundamental growth rate” (aka the “sustainable growth rate”) estimate:
\[g = ROE \cdot b \]
where b is the retention ratio (aka plowback ratio):
\[b = Retention Ratio = 1 - Dividend Payout Ratio = 1 - Dividends/Net Income\]
Once again, we can use either the fundamental growth rate of the firm itself, or an average of the fundamental growth rate of close competitors, or for the industry as a whole.
Another common approach is to assess how you think the firm will grow relative to the economy as a whole, and base your estimate of \(g\) on an estimate of the perpetual growth rate in GDP (e.g. the US GDP has grown by an average of 3.1% per year in the past 70 years).
Finally, we can use an average of past dividend growth rates, either for the firm itself or for comparable firms.
Example 2:
Assume the MSFT just paid a dividend of $2 per share, and that these dividends will grow at 30% for the next 5 years, and after that, at 6% per year in perpetuity. You have estimated that MSFT has a market beta of 1.1, and the market risk premium is 7% per year. The yield on a 1-year Tbill is 0.001. What is the estimated intrinsic value of on share of MSFT?
#
#
#
#
#
#
#
#
#
#
Using real-world data
The first thing we have to do is to estimate the discount rate to use in the valuation model. This is the expected return on MSFT stock (aka the cost of equity). We use CAPM, for the purpose of this lecture, but you may use a different model (the most common alternative is the Fama-French three factor model). All the data you need for this purpose is in the “msft_returns” file. Use a risk free rate of 4% and a market risk premium of 6% (both annual).
First, estimate the intrinsic value of a share of MSFT stock using a constant growth DDM. For the terminal growth rate, use either the industry fundamental growth rate or the historical GDP growth rate (3%).
Next, repeat the exercise using a two-stage DDM where the first stage lasts 5 years. For that initial stage, use a dividend growth rate equal to MSFT’s historical dividend growth rate.
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#