17. Growth in Dynamic Linear Economies#

This is another member of a suite of lectures that use the quantecon DLE class to instantiate models within the [HS13] class of models described in detail in Recursive Models of Dynamic Linear Economies.

In addition to what’s included in Anaconda, this lecture uses the quantecon library.

!pip install --upgrade quantecon
Hide code cell output
Requirement already satisfied: quantecon in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (0.7.1)
Requirement already satisfied: numba>=0.49.0 in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from quantecon) (0.57.1)
Requirement already satisfied: numpy>=1.17.0 in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from quantecon) (1.24.3)
Requirement already satisfied: requests in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from quantecon) (2.31.0)
Requirement already satisfied: scipy>=1.5.0 in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from quantecon) (1.11.1)
Requirement already satisfied: sympy in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from quantecon) (1.11.1)
Requirement already satisfied: llvmlite<0.41,>=0.40.0dev0 in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from numba>=0.49.0->quantecon) (0.40.0)
Requirement already satisfied: charset-normalizer<4,>=2 in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from requests->quantecon) (2.0.4)
Requirement already satisfied: idna<4,>=2.5 in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from requests->quantecon) (3.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from requests->quantecon) (1.26.16)
Requirement already satisfied: certifi>=2017.4.17 in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from requests->quantecon) (2023.7.22)
Requirement already satisfied: mpmath>=0.19 in /usr/share/miniconda3/envs/quantecon/lib/python3.11/site-packages (from sympy->quantecon) (1.3.0)

This lecture describes several complete market economies having a common linear-quadratic-Gaussian structure.

Three examples of such economies show how the DLE class can be used to compute equilibria of such economies in Python and to illustrate how different versions of these economies can or cannot generate sustained growth.

We require the following imports

import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
from quantecon import DLE

17.1. Common Structure#

Our example economies have the following features

  • Information flows are governed by an exogenous stochastic process \(z_t\) that follows

    \[ z_{t+1} = A_{22}z_t + C_2w_{t+1} \]

    where \(w_{t+1}\) is a martingale difference sequence.

  • Preference shocks \(b_t\) and technology shocks \(d_t\) are linear functions of \(z_t\)

    \[ b_t = U_bz_t \]
    \[ d_t = U_dz_t \]
  • Consumption and physical investment goods are produced using the following technology

    \[ \Phi_c c_t + \Phi_g g_t + \Phi_i i_t = \Gamma k_{t-1} + d_t \]
    \[ k_t = \Delta_k k_{t-1} + \Theta_k i_t \]
    \[ g_t \cdot g_t = l_t^2 \]

    where \(c_t\) is a vector of consumption goods, \(g_t\) is a vector of intermediate goods, \(i_t\) is a vector of investment goods, \(k_t\) is a vector of physical capital goods, and \(l_t\) is the amount of labor supplied by the representative household.

  • Preferences of a representative household are described by

    \[ -\frac{1}{2}\mathbb{E}\sum_{t=0}^\infty \beta^t [(s_t-b_t)\cdot(s_t - b_t) + l_t^2], 0 < \beta < 1 \]
    \[ s_t = \Lambda h_{t-1} + \Pi c_t \]
    \[ h_t = \Delta_h h_{t-1} + \Theta_h c_t \]

where \(s_t\) is a vector of consumption services, and \(h_t\) is a vector of household capital stocks.

Thus, an instance of this class of economies is described by the matrices

\[ \{ A_{22}, C_2, U_b, U_d, \Phi_c, \Phi_g, \Phi_i, \Gamma, \Delta_k, \Theta_k,\Lambda, \Pi, \Delta_h, \Theta_h \} \]

and the scalar \(\beta\).

17.2. A Planning Problem#

The first welfare theorem asserts that a competitive equilibrium allocation solves the following planning problem.

Choose \(\{c_t, s_t, i_t, h_t, k_t, g_t\}_{t=0}^\infty\) to maximize

\[ -\frac{1}{2}\mathbb{E}\sum_{t=0}^\infty \beta^t [(s_t-b_t)\cdot(s_t - b_t) + g_t \cdot g_t] \]

subject to the linear constraints

\[ \Phi_c c_t + \Phi_g g_t + \Phi_i i_t = \Gamma k_{t-1} + d_t \]
\[ k_t = \Delta_k k_{t-1} + \Theta_k i_t \]
\[ h_t = \Delta_h h_{t-1} + \Theta_h c_t \]
\[ s_t = \Lambda h_{t-1} + \Pi c_t \]

and

\[ z_{t+1} = A_{22}z_t + C_2w_{t+1} \]
\[ b_t = U_bz_t \]
\[ d_t = U_dz_t \]

The DLE class in Python maps this planning problem into a linear-quadratic dynamic programming problem and then solves it by using QuantEcon’s LQ class.

(See Section 5.5 of Hansen & Sargent (2013) [HS13] for a full description of how to map these economies into an LQ setting, and how to use the solution to the LQ problem to construct the output matrices in order to simulate the economies)

The state for the LQ problem is

\[\begin{split} x_t = \left[ {\begin{array}{c} h_{t-1} \\ k_{t-1} \\ z_t \end{array} } \right] \end{split}\]

and the control variable is \(u_t = i_t\).

Once the LQ problem has been solved, the law of motion for the state is

\[ x_{t+1} = (A-BF)x_t + Cw_{t+1} \]

where the optimal control law is \(u_t = -Fx_t\).

Letting \(A^o = A-BF\) we write this law of motion as

\[ x_{t+1} = A^ox_t + Cw_{t+1} \]

17.3. Example Economies#

Each of the example economies shown here will share a number of components. In particular, for each we will consider preferences of the form

\[ - \frac{1}{2}\mathbb{E}\sum_{t=0}^\infty \beta^t [(s_t-b_t)^2 + l_t^2], 0 < \beta < 1 \]
\[ s_t = \lambda h_{t-1} + \pi c_t \]
\[ h_t = \delta_h h_{t-1} + \theta_h c_t \]
\[ b_t = U_bz_t \]

Technology of the form

\[ c_t + i_t = \gamma_1 k_{t-1} + d_{1t} \]
\[ k_t = \delta_k k_{t-1} + i_t \]
\[ g_t = \phi_1 i_t \, , \phi_1 > 0 \]
\[\begin{split} \left[ {\begin{array}{c} d_{1t} \\ 0 \end{array} } \right] = U_dz_t \end{split}\]

And information of the form

\[\begin{split} z_{t+1} = \left[ {\begin{array}{ccc} 1 & 0 & 0 \\ 0 & 0.8 & 0 \\ 0 & 0 & 0.5 \end{array} } \right] z_t + \left[ {\begin{array}{cc} 0 & 0 \\ 1 & 0 \\ 0 & 1 \end{array} } \right] w_{t+1} \end{split}\]
\[ U_b = \left[ {\begin{array}{ccc} 30 & 0 & 0 \end{array} } \right] \]
\[\begin{split} U_d = \left[ {\begin{array}{ccc} 5 & 1 & 0 \\ 0 & 0 & 0 \end{array} } \right] \end{split}\]

We shall vary \(\{\lambda, \pi, \delta_h, \theta_h, \gamma_1, \delta_k, \phi_1\}\) and the initial state \(x_0\) across the three economies.

17.3.1. Example 1: Hall (1978)#

First, we set parameters such that consumption follows a random walk. In particular, we set

\[ \lambda = 0, \pi = 1, \gamma_1 = 0.1, \phi_1 = 0.00001, \delta_k = 0.95, \beta = \frac{1}{1.05} \]

(In this economy \(\delta_h\) and \(\theta_h\) are arbitrary as household capital does not enter the equation for consumption services We set them to values that will become useful in Example 3)

It is worth noting that this choice of parameter values ensures that \(\beta(\gamma_1 + \delta_k) = 1\).

For simulations of this economy, we choose an initial condition of

\[ x_0 = \left[ {\begin{array}{ccccc} 5 & 150 & 1 & 0 & 0 \end{array} } \right]' \]
# Parameter Matrices
γ_1 = 0.1
ϕ_1 = 1e-5

ϕ_c, ϕ_g, ϕ_i, γ, δ_k, θ_k = (np.array([[1], [0]]),
                              np.array([[0], [1]]),
                              np.array([[1], [-ϕ_1]]),
                              np.array([[γ_1], [0]]),
                              np.array([[.95]]),
                              np.array([[1]]))

β, l_λ, π_h, δ_h, θ_h = (np.array([[1 / 1.05]]),
                         np.array([[0]]),
                         np.array([[1]]),
                         np.array([[.9]]),
                         np.array([[1]]) - np.array([[.9]]))

a22, c2, ub, ud = (np.array([[1,   0,   0],
                             [0, 0.8,   0],
                             [0,   0, 0.5]]),
                   np.array([[0, 0],
                             [1, 0],
                             [0, 1]]),
                   np.array([[30, 0, 0]]),
                   np.array([[5, 1, 0],
                             [0, 0, 0]]))

# Initial condition
x0 = np.array([[5], [150], [1], [0], [0]])

info1 = (a22, c2, ub, ud)
tech1 = (ϕ_c, ϕ_g, ϕ_i, γ, δ_k, θ_k)
pref1 = (β, l_λ, π_h, δ_h, θ_h)

These parameter values are used to define an economy of the DLE class.

econ1 = DLE(info1, tech1, pref1)

We can then simulate the economy for a chosen length of time, from our initial state vector \(x_0\)

econ1.compute_sequence(x0, ts_length=300)

The economy stores the simulated values for each variable. Below we plot consumption and investment

# This is the right panel of Fig 5.7.1 from p.105 of HS2013
plt.plot(econ1.c[0], label='Cons.')
plt.plot(econ1.i[0], label='Inv.')
plt.legend()
plt.show()
_images/b25d170efe2169299646890f601705022fff80eac8f5750f6be89627ccfe1a96.png

Inspection of the plot shows that the sample paths of consumption and investment drift in ways that suggest that each has or nearly has a random walk or unit root component.

This is confirmed by checking the eigenvalues of \(A^o\)

econ1.endo, econ1.exo
(array([0.9, 1. ]), array([1. , 0.8, 0.5]))

The endogenous eigenvalue that appears to be unity reflects the random walk character of consumption in Hall’s model.

  • Actually, the largest endogenous eigenvalue is very slightly below 1.

  • This outcome comes from the small adjustment cost \(\phi_1\).

econ1.endo[1]
0.9999999999904767

The fact that the largest endogenous eigenvalue is strictly less than unity in modulus means that it is possible to compute the non-stochastic steady state of consumption, investment and capital.

econ1.compute_steadystate()
np.set_printoptions(precision=3, suppress=True)
print(econ1.css, econ1.iss, econ1.kss)
[[4.999]] [[-0.001]] [[-0.023]]

However, the near-unity endogenous eigenvalue means that these steady state values are of little relevance.

17.3.2. Example 2: Altered Growth Condition#

We generate our next economy by making two alterations to the parameters of Example 1.

  • First, we raise \(\phi_1\) from 0.00001 to 1.

    • This will lower the endogenous eigenvalue that is close to 1, causing the economy to head more quickly to the vicinity of its non-stochastic steady-state.

  • Second, we raise \(\gamma_1\) from 0.1 to 0.15.

    • This has the effect of raising the optimal steady-state value of capital.

We also start the economy off from an initial condition with a lower capital stock

\[ x_0 = \left[ {\begin{array}{ccccc} 5 & 20 & 1 & 0 & 0 \end{array} } \right]' \]

Therefore, we need to define the following new parameters

γ2 = 0.15
γ22 = np.array([[γ2], [0]])

ϕ_12 = 1
ϕ_i2 = np.array([[1], [-ϕ_12]])

tech2 = (ϕ_c, ϕ_g, ϕ_i2, γ22, δ_k, θ_k)

x02 = np.array([[5], [20], [1], [0], [0]])

Creating the DLE class and then simulating gives the following plot for consumption and investment

econ2 = DLE(info1, tech2, pref1)

econ2.compute_sequence(x02, ts_length=300)

plt.plot(econ2.c[0], label='Cons.')
plt.plot(econ2.i[0], label='Inv.')
plt.legend()
plt.show()
_images/4ab2590efb90533f1faa2ccd3cb211e5eae690374eb777eea748db352ab6a6a9.png

Simulating our new economy shows that consumption grows quickly in the early stages of the sample.

However, it then settles down around the new non-stochastic steady-state level of consumption of 17.5, which we find as follows

econ2.compute_steadystate()
print(econ2.css, econ2.iss, econ2.kss)
[[17.5]] [[6.25]] [[125.]]

The economy converges faster to this level than in Example 1 because the largest endogenous eigenvalue of \(A^o\) is now significantly lower than 1.

econ2.endo, econ2.exo
(array([0.9  , 0.952]), array([1. , 0.8, 0.5]))

17.3.3. Example 3: A Jones-Manuelli (1990) Economy#

For our third economy, we choose parameter values with the aim of generating sustained growth in consumption, investment and capital.

To do this, we set parameters so that Jones and Manuelli’s “growth condition” is just satisfied.

In our notation, just satisfying the growth condition is actually equivalent to setting \(\beta(\gamma_1 + \delta_k) = 1\), the condition that was necessary for consumption to be a random walk in Hall’s model.

Thus, we lower \(\gamma_1\) back to 0.1.

In our model, this is a necessary but not sufficient condition for growth.

To generate growth we set preference parameters to reflect habit persistence.

In particular, we set \(\lambda = -1\), \(\delta_h = 0.9\) and \(\theta_h = 1 - \delta_h = 0.1\).

This makes preferences assume the form

\[ - \frac{1}{2}\mathbb{E}\sum_{t=0}^\infty \beta^t [(c_t-b_t - (1-\delta_h)\sum_{j=0}^\infty \delta_h^jc_{t-j-1})^2 + l_t^2] \]

These preferences reflect habit persistence

  • the effective “bliss point” \(b_t + (1-\delta_h)\sum_{j=0}^\infty \delta_h^jc_{t-j-1}\) now shifts in response to a moving average of past consumption

Since \(\delta_h\) and \(\theta_h\) were defined earlier, the only change we need to make from the parameters of Example 1 is to define the new value of \(\lambda\).

l_λ2 = np.array([[-1]])
pref2 = (β, l_λ2, π_h, δ_h, θ_h)
econ3 = DLE(info1, tech1, pref2)

We simulate this economy from the original state vector

econ3.compute_sequence(x0, ts_length=300)

# This is the right panel of Fig 5.10.1 from p.110 of HS2013
plt.plot(econ3.c[0], label='Cons.')
plt.plot(econ3.i[0], label='Inv.')
plt.legend()
plt.show()
_images/51ca5d6792ceb14e4929cbc9bab2d63b4b3a4dad29512167e2dfd015984f9d2b.png

Thus, adding habit persistence to the Hall model of Example 1 is enough to generate sustained growth in our economy.

The eigenvalues of \(A^o\) in this new economy are

econ3.endo, econ3.exo
(array([1.+0.j, 1.-0.j]), array([1. , 0.8, 0.5]))

We now have two unit endogenous eigenvalues. One stems from satisfying the growth condition (as in Example 1).

The other unit eigenvalue results from setting \(\lambda = -1\).

To show the importance of both of these for generating growth, we consider the following experiments.

17.3.4. Example 3.1: Varying Sensitivity#

Next we raise \(\lambda\) to -0.7

l_λ3 = np.array([[-0.7]])
pref3 = (β, l_λ3, π_h, δ_h, θ_h)

econ4 = DLE(info1, tech1, pref3)

econ4.compute_sequence(x0, ts_length=300)

plt.plot(econ4.c[0], label='Cons.')
plt.plot(econ4.i[0], label='Inv.')
plt.legend()
plt.show()
_images/a528480debbd01c588f9ffa1f97ab7d84994362848692a5094373c202a144e70.png

We no longer achieve sustained growth if \(\lambda\) is raised from -1 to -0.7.

This is related to the fact that one of the endogenous eigenvalues is now less than 1.

econ4.endo, econ4.exo
(array([0.97, 1.  ]), array([1. , 0.8, 0.5]))

17.3.5. Example 3.2: More Impatience#

Next let’s lower \(\beta\) to 0.94

β_2 = np.array([[0.94]])
pref4 = (β_2, l_λ, π_h, δ_h, θ_h)

econ5 = DLE(info1, tech1, pref4)

econ5.compute_sequence(x0, ts_length=300)

plt.plot(econ5.c[0], label='Cons.')
plt.plot(econ5.i[0], label='Inv.')
plt.legend()
plt.show()
_images/8d0e73b9a5df4228a7b68593a1fa28cfaaf3cfe892fad4f64215997d766d59e2.png

Growth also fails if we lower \(\beta\), since we now have \(\beta(\gamma_1 + \delta_k) < 1\).

Consumption and investment explode downwards, as a lower value of \(\beta\) causes the representative consumer to front-load consumption.

This explosive path shows up in the second endogenous eigenvalue now being larger than one.

econ5.endo, econ5.exo
(array([0.9  , 1.013]), array([1. , 0.8, 0.5]))