2. Asset Pricing: Finite State Models

“A little knowledge of geometric series goes a long way” – Robert E. Lucas, Jr.

“Asset pricing is all about covariances” – Lars Peter Hansen

In addition to what’s in Anaconda, this lecture will need the following libraries:

!conda install -y quantecon
Collecting package metadata (current_repodata.json): - 
\ 
| 
/ 
- 
\ 
| 
/ 
- 
\ 
| 
/ 
- 
\ 
| 
/ 
- 
\ 
| 
/ 
done
Solving environment: \ 
| 
/ 
- 
\ 
| 
/ 
- 
\ 
| 
/ 
- 
\ 
| 
/ 
- 
\ 
| 
/ 
- 
\ 
| 
done
==> WARNING: A newer version of conda exists. <==
  current version: 4.8.5
  latest version: 4.9.0

Please update conda by running

    $ conda update -n base conda



# All requested packages already installed.

2.1. Overview

An asset is a claim on one or more future payoffs.

The spot price of an asset depends primarily on

  • the anticipated dynamics for the stream of income accruing to the owners

  • attitudes to risk

  • rates of time preference

In this lecture, we consider some standard pricing models and dividend stream specifications.

We study how prices and dividend-price ratios respond in these different scenarios.

We also look at creating and pricing derivative assets by repackaging income streams.

Key tools for the lecture are

  • formulas for predicting future values of functions of a Markov state

  • a formula for predicting the discounted sum of future values of a Markov state

Let’s start with some imports:

import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
import quantecon as qe
from numpy.linalg import eigvals, solve

2.2. Pricing Models

In what follows let \(\{d_t\}_{t \geq 0}\) be a stream of dividends

  • A time-\(t\) cum-dividend asset is a claim to the stream \(d_t, d_{t+1}, \ldots\).

  • A time-\(t\) ex-dividend asset is a claim to the stream \(d_{t+1}, d_{t+2}, \ldots\).

Let’s look at some equations that we expect to hold for prices of assets under ex-dividend contracts (we will consider cum-dividend pricing in the exercises).

2.2.1. Risk-Neutral Pricing

Our first scenario is risk-neutral pricing.

Let \(\beta = 1/(1+\rho)\) be an intertemporal discount factor, where \(\rho\) is the rate at which agents discount the future.

The basic risk-neutral asset pricing equation for pricing one unit of an ex-dividend asset is

(2.1)\[p_t = \beta {\mathbb E}_t [d_{t+1} + p_{t+1}]\]

This is a simple “cost equals expected benefit” relationship.

Here \({\mathbb E}_t [y]\) denotes the best forecast of \(y\), conditioned on information available at time \(t\).

2.2.2. Pricing with Random Discount Factor

What happens if for some reason traders discount payouts differently depending on the state of the world?

Michael Harrison and David Kreps [HK79] and Lars Peter Hansen and Scott Richard [HR87] showed that in quite general settings the price of an ex-dividend asset obeys

(2.2)\[p_t = {\mathbb E}_t \left[ m_{t+1} ( d_{t+1} + p_{t+1} ) \right]\]

for some stochastic discount factor \(m_{t+1}\).

The fixed discount factor \(\beta\) in (2.1) has been replaced by the random variable \(m_{t+1}\).

The way anticipated future payoffs are evaluated can now depend on various random outcomes.

One example of this idea is that assets that tend to have good payoffs in bad states of the world might be regarded as more valuable.

This is because they pay well when the funds are more urgently needed.

We give examples of how the stochastic discount factor has been modeled below.

2.2.3. Asset Pricing and Covariances

Recall that, from the definition of a conditional covariance \({\rm cov}_t (x_{t+1}, y_{t+1})\), we have

(2.3)\[{\mathbb E}_t (x_{t+1} y_{t+1}) = {\rm cov}_t (x_{t+1}, y_{t+1}) + {\mathbb E}_t x_{t+1} {\mathbb E}_t y_{t+1}\]

If we apply this definition to the asset pricing equation (2.2) we obtain

(2.4)\[p_t = {\mathbb E}_t m_{t+1} {\mathbb E}_t (d_{t+1} + p_{t+1}) + {\rm cov}_t (m_{t+1}, d_{t+1}+ p_{t+1})\]

It is useful to regard equation (2.4) as a generalization of equation (2.1)

  • In equation (2.1), the stochastic discount factor \(m_{t+1} = \beta\), a constant.

  • In equation (2.1), the covariance term \({\rm cov}_t (m_{t+1}, d_{t+1}+ p_{t+1})\) is zero because \(m_{t+1} = \beta\).

Equation (2.4) asserts that the covariance of the stochastic discount factor with the one period payout \(d_{t+1} + p_{t+1}\) is an important determinant of the price \(p_t\).

We give examples of some models of stochastic discount factors that have been proposed later in this lecture and also in a later lecture.

2.2.4. The Price-Dividend Ratio

Aside from prices, another quantity of interest is the price-dividend ratio \(v_t := p_t / d_t\).

Let’s write down an expression that this ratio should satisfy.

We can divide both sides of (2.2) by \(d_t\) to get

(2.5)\[v_t = {\mathbb E}_t \left[ m_{t+1} \frac{d_{t+1}}{d_t} (1 + v_{t+1}) \right]\]

Below we’ll discuss the implication of this equation.

2.3. Prices in the Risk-Neutral Case

What can we say about price dynamics on the basis of the models described above?

The answer to this question depends on

  1. the process we specify for dividends

  2. the stochastic discount factor and how it correlates with dividends

For now let’s focus on the risk-neutral case, where the stochastic discount factor is constant, and study how prices depend on the dividend process.

2.3.1. Example 1: Constant Dividends

The simplest case is risk-neutral pricing in the face of a constant, non-random dividend stream \(d_t = d > 0\).

Removing the expectation from (2.1) and iterating forward gives

\[\begin{split} \begin{aligned} p_t & = \beta (d + p_{t+1}) \\ & = \beta (d + \beta(d + p_{t+2})) \\ & \quad \vdots \\ & = \beta (d + \beta d + \beta^2 d + \cdots + \beta^{k-2} d + \beta^{k-1} p_{t+k}) \end{aligned} \end{split}\]

Unless prices explode in the future, this sequence converges to

(2.6)\[\bar p := \frac{\beta d}{1-\beta}\]

This price is the equilibrium price in the constant dividend case.

Indeed, simple algebra shows that setting \(p_t = \bar p\) for all \(t\) satisfies the equilibrium condition \(p_t = \beta (d + p_{t+1})\).

2.3.2. Example 2: Dividends with Deterministic Growth Paths

Consider a growing, non-random dividend process \(d_{t+1} = g d_t\) where \(0 < g \beta < 1\).

While prices are not usually constant when dividends grow over time, the price dividend-ratio might be.

If we guess this, substituting \(v_t = v\) into (2.5) as well as our other assumptions, we get \(v = \beta g (1 + v)\).

Since \(\beta g < 1\), we have a unique positive solution:

\[ v = \frac{\beta g}{1 - \beta g } \]

The price is then

\[ p_t = \frac{\beta g}{1 - \beta g } d_t \]

If, in this example, we take \(g = 1+\kappa\) and let \(\rho := 1/\beta - 1\), then the price becomes

\[ p_t = \frac{1 + \kappa}{ \rho - \kappa} d_t \]

This is called the Gordon formula.

2.3.3. Example 3: Markov Growth, Risk-Neutral Pricing

Next, we consider a dividend process

(2.7)\[d_{t+1} = g_{t+1} d_t\]

The stochastic growth factor \(\{g_t\}\) is given by

\[ g_t = g(X_t), \quad t = 1, 2, \ldots \]

where

  1. \(\{X_t\}\) is a finite Markov chain with state space \(S\) and transition probabilities

\[ P(x, y) := \mathbb P \{ X_{t+1} = y \,|\, X_t = x \} \qquad (x, y \in S) \]
  1. \(g\) is a given function on \(S\) taking positive values

You can think of

  • \(S\) as \(n\) possible “states of the world” and \(X_t\) as the current state.

  • \(g\) as a function that maps a given state \(X_t\) into a growth factor \(g_t = g(X_t)\) for the endowment.

  • \(\ln g_t = \ln (d_{t+1} / d_t)\) is the growth rate of dividends.

(For a refresher on notation and theory for finite Markov chains see this lecture)

The next figure shows a simulation, where

  • \(\{X_t\}\) evolves as a discretized AR1 process produced using Tauchen’s method.

  • \(g_t = \exp(X_t)\), so that \(\ln g_t = X_t\) is the growth rate.

mc = qe.tauchen(0.96, 0.25, n=25)
sim_length = 80

x_series = mc.simulate(sim_length, init=np.median(mc.state_values))
g_series = np.exp(x_series)
d_series = np.cumprod(g_series) # Assumes d_0 = 1

series = [x_series, g_series, d_series, np.log(d_series)]
labels = ['$X_t$', '$g_t$', '$d_t$', r'$\log \, d_t$']

fig, axes = plt.subplots(2, 2, figsize=(12, 8))
for ax, s, label in zip(axes.flatten(), series, labels):
    ax.plot(s, 'b-', lw=2, label=label)
    ax.legend(loc='upper left', frameon=False)
plt.tight_layout()
plt.show()
_images/markov_asset_5_0.png

2.3.3.1. Pricing

To obtain asset prices in this setting, let’s adapt our analysis from the case of deterministic growth.

In that case, we found that \(v\) is constant.

This encourages us to guess that, in the current case, \(v_t\) is constant given the state \(X_t\).

In other words, we are looking for a fixed function \(v\) such that the price-dividend ratio satisfies \(v_t = v(X_t)\).

We can substitute this guess into (2.5) to get

\[ v(X_t) = \beta {\mathbb E}_t [ g(X_{t+1}) (1 + v(X_{t+1})) ] \]

If we condition on \(X_t = x\), this becomes

\[ v(x) = \beta \sum_{y \in S} g(y) (1 + v(y)) P(x, y) \]

or

(2.8)\[v(x) = \beta \sum_{y \in S} K(x, y) (1 + v(y)) \quad \text{where} \quad K(x, y) := g(y) P(x, y)\]

Suppose that there are \(n\) possible states \(x_1, \ldots, x_n\).

We can then think of (2.8) as \(n\) stacked equations, one for each state, and write it in matrix form as

(2.9)\[v = \beta K (\mathbb 1 + v)\]

Here

  • \(v\) is understood to be the column vector \((v(x_1), \ldots, v(x_n))'\).

  • \(K\) is the matrix \((K(x_i, x_j))_{1 \leq i, j \leq n}\).

  • \({\mathbb 1}\) is a column vector of ones.

When does (2.9) have a unique solution?

From the Neumann series lemma and Gelfand’s formula, this will be the case if \(\beta K\) has spectral radius strictly less than one.

In other words, we require that the eigenvalues of \(K\) be strictly less than \(\beta^{-1}\) in modulus.

The solution is then

(2.10)\[v = (I - \beta K)^{-1} \beta K{\mathbb 1}\]

2.3.4. Code

Let’s calculate and plot the price-dividend ratio at a set of parameters.

As before, we’ll generate \(\{X_t\}\) as a discretized AR1 process and set \(g_t = \exp(X_t)\).

Here’s the code, including a test of the spectral radius condition

n = 25  # Size of state space
β = 0.9
mc = qe.tauchen(0.96, 0.02, n=n)

K = mc.P * np.exp(mc.state_values)

warning_message = "Spectral radius condition fails"
assert np.max(np.abs(eigvals(K))) < 1 / β,  warning_message

I = np.identity(n)
v = solve(I - β * K, β * K @ np.ones(n))

fig, ax = plt.subplots(figsize=(12, 8))
ax.plot(mc.state_values, v, 'g-o', lw=2, alpha=0.7, label='$v$')
ax.set_ylabel("price-dividend ratio")
ax.set_xlabel("state")
ax.legend(loc='upper left')
plt.show()
_images/markov_asset_7_0.png

Why does the price-dividend ratio increase with the state?

The reason is that this Markov process is positively correlated, so high current states suggest high future states.

Moreover, dividend growth is increasing in the state.

The anticipation of high future dividend growth leads to a high price-dividend ratio.

2.4. Asset Prices under Risk Aversion

Now let’s turn to the case where agents are risk averse.

We’ll price several distinct assets, including

  • The price of an endowment stream

  • A consol (a type of bond issued by the UK government in the 19th century)

  • Call options on a consol

2.4.1. Pricing a Lucas Tree

Let’s start with a version of the celebrated asset pricing model of Robert E. Lucas, Jr. [Luc78].

As in [Luc78], suppose that the stochastic discount factor takes the form

(2.11)\[m_{t+1} = \beta \frac{u'(c_{t+1})}{u'(c_t)}\]

where \(u\) is a concave utility function and \(c_t\) is time \(t\) consumption of a representative consumer.

(A derivation of this expression is given in a later lecture)

Assume the existence of an endowment that follows (2.7).

The asset being priced is a claim on the endowment process.

Following [Luc78], suppose further that in equilibrium, consumption is equal to the endowment, so that \(d_t = c_t\) for all \(t\).

For utility, we’ll assume the constant relative risk aversion (CRRA) specification

(2.12)\[u(c) = \frac{c^{1-\gamma}}{1 - \gamma} \ {\rm with} \ \gamma > 0\]

When \(\gamma =1\) we let \(u(c) = \ln c\).

Inserting the CRRA specification into (2.11) and using \(c_t = d_t\) gives

(2.13)\[m_{t+1} = \beta \left(\frac{c_{t+1}}{c_t}\right)^{-\gamma} = \beta g_{t+1}^{-\gamma}\]

Substituting this into (2.5) gives the price-dividend ratio formula

\[ v(X_t) = \beta {\mathbb E}_t \left[ g(X_{t+1})^{1-\gamma} (1 + v(X_{t+1}) ) \right] \]

Conditioning on \(X_t = x\), we can write this as

\[ v(x) = \beta \sum_{y \in S} g(y)^{1-\gamma} (1 + v(y) ) P(x, y) \]

If we let

\[ J(x, y) := g(y)^{1-\gamma} P(x, y) \]

then we can rewrite in vector form as

\[ v = \beta J ({\mathbb 1} + v ) \]

Assuming that the spectral radius of \(J\) is strictly less than \(\beta^{-1}\), this equation has the unique solution

(2.14)\[v = (I - \beta J)^{-1} \beta J {\mathbb 1}\]

We will define a function tree_price to solve for \(v\) given parameters stored in the class AssetPriceModel

class AssetPriceModel:
    """
    A class that stores the primitives of the asset pricing model.

    Parameters
    ----------
    β : scalar, float
        Discount factor
    mc : MarkovChain
        Contains the transition matrix and set of state values for the state
        process
    γ : scalar(float)
        Coefficient of risk aversion
    g : callable
        The function mapping states to growth rates

    """
    def __init__(self, β=0.96, mc=None, γ=2.0, g=np.exp):
        self.β, self.γ = β, γ
        self.g = g

        # A default process for the Markov chain
        if mc is None:
            self.ρ = 0.9
            self.σ = 0.02
            self.mc = qe.tauchen(self.ρ, self.σ, n=25)
        else:
            self.mc = mc

        self.n = self.mc.P.shape[0]

    def test_stability(self, Q):
        """
        Stability test for a given matrix Q.
        """
        sr = np.max(np.abs(eigvals(Q)))
        if not sr < 1 / self.β:
            msg = f"Spectral radius condition failed with radius = {sr}"
            raise ValueError(msg)


def tree_price(ap):
    """
    Computes the price-dividend ratio of the Lucas tree.

    Parameters
    ----------
    ap: AssetPriceModel
        An instance of AssetPriceModel containing primitives

    Returns
    -------
    v : array_like(float)
        Lucas tree price-dividend ratio

    """
    # Simplify names, set up matrices
    β, γ, P, y = ap.β, ap.γ, ap.mc.P, ap.mc.state_values
    J = P * ap.g(y)**(1 - γ)

    # Make sure that a unique solution exists
    ap.test_stability(J)

    # Compute v
    I = np.identity(ap.n)
    Ones = np.ones(ap.n)
    v = solve(I - β * J, β * J @ Ones)

    return v

Here’s a plot of \(v\) as a function of the state for several values of \(\gamma\), with a positively correlated Markov process and \(g(x) = \exp(x)\)

γs = [1.2, 1.4, 1.6, 1.8, 2.0]
ap = AssetPriceModel()
states = ap.mc.state_values

fig, ax = plt.subplots(figsize=(12, 8))

for γ in γs:
    ap.γ = γ
    v = tree_price(ap)
    ax.plot(states, v, lw=2, alpha=0.6, label=rf"$\gamma = {γ}$")

ax.set_title('Price-divdend ratio as a function of the state')
ax.set_ylabel("price-dividend ratio")
ax.set_xlabel("state")
ax.legend(loc='upper right')
plt.show()
_images/markov_asset_11_0.png

Notice that \(v\) is decreasing in each case.

This is because, with a positively correlated state process, higher states suggest higher future consumption growth.

In the stochastic discount factor (2.13), higher growth decreases the discount factor, lowering the weight placed on future returns.

2.4.1.1. Special Cases

In the special case \(\gamma =1\), we have \(J = P\).

Recalling that \(P^i {\mathbb 1} = {\mathbb 1}\) for all \(i\) and applying Neumann’s geometric series lemma, we are led to

\[ v = \beta(I-\beta P)^{-1} {\mathbb 1} = \beta \sum_{i=0}^{\infty} \beta^i P^i {\mathbb 1} = \beta \frac{1}{1 - \beta} {\mathbb 1} \]

Thus, with log preferences, the price-dividend ratio for a Lucas tree is constant.

Alternatively, if \(\gamma = 0\), then \(J = K\) and we recover the risk-neutral solution (2.10).

This is as expected, since \(\gamma = 0\) implies \(u(c) = c\) (and hence agents are risk-neutral).

2.4.2. A Risk-Free Consol

Consider the same pure exchange representative agent economy.

A risk-free consol promises to pay a constant amount \(\zeta> 0\) each period.

Recycling notation, let \(p_t\) now be the price of an ex-coupon claim to the consol.

An ex-coupon claim to the consol entitles the owner at the end of period \(t\) to

  • \(\zeta\) in period \(t+1\), plus

  • the right to sell the claim for \(p_{t+1}\) next period

The price satisfies (2.2) with \(d_t = \zeta\), or

\[ p_t = {\mathbb E}_t \left[ m_{t+1} ( \zeta + p_{t+1} ) \right] \]

We maintain the stochastic discount factor (2.13), so this becomes

(2.15)\[p_t = {\mathbb E}_t \left[ \beta g_{t+1}^{-\gamma} ( \zeta + p_{t+1} ) \right]\]

Guessing a solution of the form \(p_t = p(X_t)\) and conditioning on \(X_t = x\), we get

\[ p(x) = \beta \sum_{y \in S} g(y)^{-\gamma} (\zeta + p(y)) P(x, y) \]

Letting \(M(x, y) = P(x, y) g(y)^{-\gamma}\) and rewriting in vector notation yields the solution

(2.16)\[p = (I - \beta M)^{-1} \beta M \zeta {\mathbb 1}\]

The above is implemented in the function consol_price.

def consol_price(ap, ζ):
    """
    Computes price of a consol bond with payoff ζ

    Parameters
    ----------
    ap: AssetPriceModel
        An instance of AssetPriceModel containing primitives

    ζ : scalar(float)
        Coupon of the console

    Returns
    -------
    p : array_like(float)
        Console bond prices

    """
    # Simplify names, set up matrices
    β, γ, P, y = ap.β, ap.γ, ap.mc.P, ap.mc.state_values
    M = P * ap.g(y)**(- γ)

    # Make sure that a unique solution exists
    ap.test_stability(M)

    # Compute price
    I = np.identity(ap.n)
    Ones = np.ones(ap.n)
    p = solve(I - β * M, β * ζ * M @ Ones)

    return p

2.4.3. Pricing an Option to Purchase the Consol

Let’s now price options of varying maturity that give the right to purchase a consol at a price \(p_S\).

2.4.3.1. An Infinite Horizon Call Option

We want to price an infinite horizon option to purchase a consol at a price \(p_S\).

The option entitles the owner at the beginning of a period either to

  1. purchase the bond at price \(p_S\) now, or

  2. Not to exercise the option now but to retain the right to exercise it later

Thus, the owner either exercises the option now or chooses not to exercise and wait until next period.

This is termed an infinite-horizon call option with strike price \(p_S\).

The owner of the option is entitled to purchase the consol at the price \(p_S\) at the beginning of any period, after the coupon has been paid to the previous owner of the bond.

The fundamentals of the economy are identical with the one above, including the stochastic discount factor and the process for consumption.

Let \(w(X_t, p_S)\) be the value of the option when the time \(t\) growth state is known to be \(X_t\) but before the owner has decided whether or not to exercise the option at time \(t\) (i.e., today).

Recalling that \(p(X_t)\) is the value of the consol when the initial growth state is \(X_t\), the value of the option satisfies

\[ w(X_t, p_S) = \max \left\{ \beta \, {\mathbb E}_t \frac{u'(c_{t+1})}{u'(c_t)} w(X_{t+1}, p_S), \; p(X_t) - p_S \right\} \]

The first term on the right is the value of waiting, while the second is the value of exercising now.

We can also write this as

(2.17)\[w(x, p_S) = \max \left\{ \beta \sum_{y \in S} P(x, y) g(y)^{-\gamma} w (y, p_S), \; p(x) - p_S \right\}\]

With \(M(x, y) = P(x, y) g(y)^{-\gamma}\) and \(w\) as the vector of values \((w(x_i), p_S)_{i = 1}^n\), we can express (2.17) as the nonlinear vector equation

(2.18)\[w = \max \{ \beta M w, \; p - p_S {\mathbb 1} \}\]

To solve (2.18), form the operator \(T\) mapping vector \(w\) into vector \(Tw\) via

\[ T w = \max \{ \beta M w,\; p - p_S {\mathbb 1} \} \]

Start at some initial \(w\) and iterate to convergence with \(T\).

We can find the solution with the following function call_option

def call_option(ap, ζ, p_s, ϵ=1e-7):
    """
    Computes price of a call option on a consol bond.

    Parameters
    ----------
    ap: AssetPriceModel
        An instance of AssetPriceModel containing primitives

    ζ : scalar(float)
        Coupon of the console

    p_s : scalar(float)
        Strike price

    ϵ : scalar(float), optional(default=1e-8)
        Tolerance for infinite horizon problem

    Returns
    -------
    w : array_like(float)
        Infinite horizon call option prices

    """
    # Simplify names, set up matrices
    β, γ, P, y = ap.β, ap.γ, ap.mc.P, ap.mc.state_values
    M = P * ap.g(y)**(- γ)

    # Make sure that a unique consol price exists
    ap.test_stability(M)

    # Compute option price
    p = consol_price(ap, ζ)
    w = np.zeros(ap.n)
    error = ϵ + 1
    while error > ϵ:
        # Maximize across columns
        w_new = np.maximum(β * M @ w, p - p_s)
        # Find maximal difference of each component and update
        error = np.amax(np.abs(w - w_new))
        w = w_new

    return w

Here’s a plot of \(w\) compared to the consol price when \(P_S = 40\)

ap = AssetPriceModel(β=0.9)
ζ = 1.0
strike_price = 40

x = ap.mc.state_values
p = consol_price(ap, ζ)
w = call_option(ap, ζ, strike_price)

fig, ax = plt.subplots(figsize=(12, 8))
ax.plot(x, p, 'b-', lw=2, label='consol price')
ax.plot(x, w, 'g-', lw=2, label='value of call option')
ax.set_xlabel("state")
ax.legend(loc='upper right')
plt.show()
_images/markov_asset_17_0.png

In large states, the value of the option is close to zero.

This is despite the fact the Markov chain is irreducible and low states — where the consol prices are high — will eventually be visited.

The reason is that \(\beta=0.9\), so the future is discounted relatively rapidly.

2.4.4. Risk-Free Rates

Let’s look at risk-free interest rates over different periods.

2.4.4.1. The One-period Risk-free Interest Rate

As before, the stochastic discount factor is \(m_{t+1} = \beta g_{t+1}^{-\gamma}\).

It follows that the reciprocal \(R_t^{-1}\) of the gross risk-free interest rate \(R_t\) in state \(x\) is

\[ {\mathbb E}_t m_{t+1} = \beta \sum_{y \in S} P(x, y) g(y)^{-\gamma} \]

We can write this as

\[ m_1 = \beta M {\mathbb 1} \]

where the \(i\)-th element of \(m_1\) is the reciprocal of the one-period gross risk-free interest rate in state \(x_i\).

2.4.4.2. Other Terms

Let \(m_j\) be an \(n \times 1\) vector whose \(i\) th component is the reciprocal of the \(j\) -period gross risk-free interest rate in state \(x_i\).

Then \(m_1 = \beta M\), and \(m_{j+1} = M m_j\) for \(j \geq 1\).

2.5. Exercises

2.5.1. Exercise 1

In the lecture, we considered ex-dividend assets.

A cum-dividend asset is a claim to the stream \(d_t, d_{t+1}, \ldots\).

Following (2.1), find the risk-neutral asset pricing equation for one unit of a cum-dividend asset.

With a constant, non-random dividend stream \(d_t = d > 0\), what is the equilibrium price of a cum-dividend asset?

With a growing, non-random dividend process \(d_t = g d_t\) where \(0 < g \beta < 1\), what is the equilibrium price of a cum-dividend asset?

2.5.2. Exercise 2

Consider the following primitives

n = 5
P = 0.0125 * np.ones((n, n))
P += np.diag(0.95 - 0.0125 * np.ones(5))
# State values of the Markov chain
s = np.array([0.95, 0.975, 1.0, 1.025, 1.05])
γ = 2.0
β = 0.94

Let \(g\) be defined by \(g(x) = x\) (that is, \(g\) is the identity map).

Compute the price of the Lucas tree.

Do the same for

  • the price of the risk-free consol when \(\zeta = 1\)

  • the call option on the consol when \(\zeta = 1\) and \(p_S = 150.0\)

2.5.3. Exercise 3

Let’s consider finite horizon call options, which are more common than the infinite horizon variety.

Finite horizon options obey functional equations closely related to (2.17).

A \(k\) period option expires after \(k\) periods.

If we view today as date zero, a \(k\) period option gives the owner the right to exercise the option to purchase the risk-free consol at the strike price \(p_S\) at dates \(0, 1, \ldots , k-1\).

The option expires at time \(k\).

Thus, for \(k=1, 2, \ldots\), let \(w(x, k)\) be the value of a \(k\)-period option.

It obeys

\[ w(x, k) = \max \left\{ \beta \sum_{y \in S} P(x, y) g(y)^{-\gamma} w (y, k-1), \; p(x) - p_S \right\} \]

where \(w(x, 0) = 0\) for all \(x\).

We can express the preceding as the sequence of nonlinear vector equations

\[ w_k = \max \{ \beta M w_{k-1}, \; p - p_S {\mathbb 1} \} \quad k =1, 2, \ldots \quad \text{with } w_0 = 0 \]

Write a function that computes \(w_k\) for any given \(k\).

Compute the value of the option with k = 5 and k = 25 using parameter values as in Exercise 1.

Is one higher than the other? Can you give intuition?

2.6. Solutions

2.6.1. Exercise 1

For a cum-dividend asset, the basic risk-neutral asset pricing equation is

\[ p_t = d_t + \beta {\mathbb E}_t [ p_{t+1} ] \]

With constant dividends, the equilibrium price is

\[ p_t = \frac{1}{1-\beta} d_t \]

With a growing, non-random dividend process, the equilibrium price is

\[ p_t = \frac{1}{1 - \beta g} d_t \]

2.6.2. Exercise 2

First, let’s enter the parameters:

n = 5
P = 0.0125 * np.ones((n, n))
P += np.diag(0.95 - 0.0125 * np.ones(5))
s = np.array([0.95, 0.975, 1.0, 1.025, 1.05])  # State values
mc = qe.MarkovChain(P, state_values=s)

γ = 2.0
β = 0.94
ζ = 1.0
p_s = 150.0

Next, we’ll create an instance of AssetPriceModel to feed into the functions

apm = AssetPriceModel(β=β, mc=mc, γ=γ, g=lambda x: x)

Now we just need to call the relevant functions on the data:

tree_price(apm)
array([29.47401578, 21.93570661, 17.57142236, 14.72515002, 12.72221763])
consol_price(apm, ζ)
array([753.87100476, 242.55144082, 148.67554548, 109.25108965,
        87.56860139])
call_option(apm, ζ, p_s)
array([603.87100476, 176.8393343 , 108.67734499,  80.05179254,
        64.30843748])

Let’s show the last two functions as a plot

fig, ax = plt.subplots()
ax.plot(s, consol_price(apm, ζ), label='consol')
ax.plot(s, call_option(apm, ζ, p_s), label='call option')
ax.legend()
plt.show()
_images/markov_asset_29_0.png

2.6.3. Exercise 3

Here’s a suitable function:

def finite_horizon_call_option(ap, ζ, p_s, k):
    """
    Computes k period option value.
    """
    # Simplify names, set up matrices
    β, γ, P, y = ap.β, ap.γ, ap.mc.P, ap.mc.state_values
    M = P * ap.g(y)**(- γ)

    # Make sure that a unique solution exists
    ap.test_stability(M)


    # Compute option price
    p = consol_price(ap, ζ)
    w = np.zeros(ap.n)
    for i in range(k):
        # Maximize across columns
        w = np.maximum(β * M @ w, p - p_s)

    return w

Now let’s compute the option values at k=5 and k=25

fig, ax = plt.subplots()
for k in [5, 25]:
    w = finite_horizon_call_option(apm, ζ, p_s, k)
    ax.plot(s, w, label=rf'$k = {k}$')
ax.legend()
plt.show()
_images/markov_asset_33_0.png

Not surprisingly, the option has greater value with larger \(k\).

This is because the owner has a longer time horizon over which he or she may exercise the option.