Merton Model from Equity Data

Solve the two-equation Merton system numerically from observable equity value and equity volatility to recover asset value, asset volatility, distance to default and risk-neutral PD

For a publicly traded firm the asset value \(V_0\) and asset volatility \(\sigma_V\) are not directly observable, but the equity value \(E_0\) and equity return volatility \(\sigma_E\) usually are. Merton’s model provides two equations linking the four quantities (Christoffersen 2012, chap. 12; Hull 2023, chap. 17):

\[ E_0 = V_0\,\Phi(d_1) - D\,e^{-rT}\,\Phi(d_2) \]

\[ \sigma_E\,E_0 = \Phi(d_1)\,\sigma_V\,V_0 \]

where \(d_1 = [\ln(V_0/D) + (r + \sigma_V^2/2)T] / (\sigma_V\sqrt{T})\) and \(d_2 = d_1 - \sigma_V\sqrt{T}\). The second equation follows from Itô’s lemma applied to \(E(V, t)\) and captures the fact that equity is a leveraged claim on assets.

The system is nonlinear but well behaved. Any root-finding routine works — we solve it in the browser with a damped Newton iteration so that the results update as you move the sliders.

Inputs

Tip

How to experiment

Pick a firm with a known capital structure. Equity volatility above 60% with moderate leverage usually implies an asset volatility well below it — equity amplifies asset moves by roughly \(V_0 / E_0\). Crank \(\sigma_E\) up to 100% and watch the implied PD rise sharply. Reduce \(E_0\) toward zero to enter the “near-bankruptcy” region: leverage explodes, \(V_0 \to D\,e^{-rT}\) from above, and \(\sigma_V/\sigma_E \to 0\) (a very leveraged equity claim gets a lot of volatility from a small amount of asset volatility). Conversely, raise \(E_0\) well above \(D\): leverage falls toward 1, \(\Phi(d_1) \to 1\), and \(\sigma_V/\sigma_E \to 1\) — the unlevered limit.

How the equity-to-asset volatility ratio moves with leverage

Note

A sanity check. Christoffersen’s worked example takes \(E_0 = 3\), \(\sigma_E = 0.80\), \(D = 10\), \(T = 1\), \(r = 0.05\) and finds \(V_0 \approx 12.40\), \(\sigma_V \approx 0.2123\), PD \(\approx 12.7\%\). Plug those inputs into the sliders to verify the solver reproduces that result.

References

Christoffersen, Peter F. 2012. Elements of Financial Risk Management. 2nd ed. Academic Press.
Hull, John. 2023. Risk Management and Financial Institutions. 6th ed. John Wiley & Sons.