Overview¶
This lecture describes a rational expectations version of the famous permanent income model of Milton Friedman Friedman (1956).
Robert Hall cast Friedman’s model within a linear-quadratic setting Hall (1978).
Like Hall, we formulate an infinite-horizon linear-quadratic savings problem.
We use the model as a vehicle for illustrating
alternative formulations of the state of a dynamic system
the idea of cointegration
impulse response functions
the idea that changes in consumption are useful as predictors of movements in income
Background readings on the linear-quadratic-Gaussian permanent income model are Hall’s Hall (1978) and chapter 2 of Ljungqvist & Sargent (2018).
Let’s start with some imports
import matplotlib.pyplot as plt
import numpy as np
import randomThe Savings Problem¶
In this section, we state and solve the savings and consumption problem faced by the consumer.
Preliminaries¶
We use a class of stochastic processes called martingales.
A discrete-time martingale is a stochastic process (i.e., a sequence of random variables) with finite mean at each and satisfying
Here is a conditional mathematical expectation conditional on the time information set .
The latter is just a collection of random variables that the modeler declares to be visible at .
When not explicitly defined, it is usually understood that .
Martingales have the feature that the history of past outcomes provides no predictive power for changes between current and future outcomes.
For example, the current wealth of a gambler engaged in a “fair game” has this property.
One common class of martingales is the family of random walks.
A random walk is a stochastic process that satisfies
for some IID zero mean innovation sequence .
Evidently, can also be expressed as
Not every martingale arises as a random walk (see, for example, Wald’s martingale).
The Decision Problem¶
A consumer has preferences over consumption streams that are ordered by the utility functional
where
is the mathematical expectation conditioned on the consumer’s time information
is time consumption
is a strictly concave one-period utility function
is a discount factor
The consumer maximizes (4) by choosing a consumption, borrowing plan subject to the sequence of budget constraints
Here
is an exogenous endowment process.
is a time-invariant risk-free net interest rate.
is one-period risk-free debt maturing at .
The consumer also faces initial conditions and , which can be fixed or random.
Assumptions¶
For the remainder of this lecture, we follow Friedman and Hall in assuming that .
Regarding the endowment process, we assume it has the state-space representation
where
is an IID vector process with and .
The spectral radius of satisfies .
is a selection vector that pins down as a particular linear combination of components of .
The restriction on prevents income from growing so fast that discounted geometric sums of some quadratic forms to be described below become infinite.
Regarding preferences, we assume the quadratic utility function
where is a bliss level of consumption.
Finally, we impose the no Ponzi scheme condition
This condition rules out an always-borrow scheme that would allow the consumer to enjoy bliss consumption forever.
First-Order Conditions¶
First-order conditions for maximizing (4) subject to (5) are
These optimality conditions are also known as Euler equations.
If you’re not sure where they come from, you can find a proof sketch in the appendix.
With our quadratic preference specification, (9) has the striking implication that consumption follows a martingale:
(In fact, quadratic preferences are necessary for this conclusion [1].)
One way to interpret (10) is that consumption will change only when “new information” about permanent income is revealed.
These ideas will be clarified below.
The Optimal Decision Rule¶
Now let’s deduce the optimal decision rule [2].
In doing so, we need to combine
the optimality condition (10)
the period-by-period budget constraint (5), and
the boundary condition (8)
To accomplish this, observe first that (8) implies .
Using this restriction on the debt path and solving (5) forward yields
Take conditional expectations on both sides of (11) and use the martingale property of consumption and the law of iterated expectations to deduce
Expressed in terms of we get
where the last equality uses .
These last two equations assert that consumption equals economic income
financial wealth equals
non-financial wealth equals
total wealth equals the sum of financial and non-financial wealth
a marginal propensity to consume out of total wealth equals the interest factor
economic income equals
a constant marginal propensity to consume times the sum of non-financial wealth and financial wealth
the amount the consumer can consume while leaving its wealth intact
Responding to the State¶
The state vector confronting the consumer at is .
Here
is an exogenous component, unaffected by consumer behavior.
is an endogenous component (since it depends on the decision rule).
Note that contains all variables useful for forecasting the consumer’s future endowment.
It is plausible that current decisions and should be expressible as functions of and .
This is indeed the case.
In fact, from the discussion on forecasting geometric sums, we see that
Combining this with (13) gives
Using this equality to eliminate in the budget constraint (5) gives
To get from the second last to the last expression in this chain of equalities is not trivial.
A key is to use the fact that and .
We’ve now successfully written and as functions of and .
A State-Space Representation¶
We can summarize our dynamics in the form of a linear state-space system governing consumption, debt and income:
To write this more succinctly, let
and
Then we can express equation (17) as
We can use the following formulas from linear state space models to compute population mean and covariance
We can then compute the mean and covariance of from
A Simple Example with IID Income¶
To gain some preliminary intuition on the implications of (17), let’s look at a highly stylized example where income is just IID.
(Later examples will investigate more realistic income streams.)
In particular, let be IID and scalar standard normal, and let
Finally, let .
Under these assumptions, we have .
Further, if you work through the state space representation, you will see that
Thus, income is IID and debt and consumption are both Gaussian random walks.
Defining assets as , we see that assets are just the cumulative sum of unanticipated incomes prior to the present date.
The next figure shows a typical realization with , , and
r = 0.05
β = 1 / (1 + r)
σ = 0.15
μ = 1
T = 60
def time_path(T):
w = np.random.randn(T+1) # w_0, w_1, ..., w_T
w[0] = 0
b = np.zeros(T+1)
for t in range(1, T+1):
b[t] = w[1:t].sum()
b = -σ * b
c = μ + (1 - β) * (σ * w - b)
return w, b, c
w, b, c = time_path(T)
fig, ax = plt.subplots(figsize=(10, 6))
ax.plot(μ + σ * w, 'g-', label="Non-financial income")
ax.plot(c, 'k-', label="Consumption")
ax.plot( b, 'b-', label="Debt")
ax.legend(ncol=3, mode='expand', bbox_to_anchor=(0., 1.02, 1., .102))
ax.grid()
ax.set_xlabel('Time')
plt.show()Observe that consumption is considerably smoother than income.
The figure below shows the consumption paths of 250 consumers with independent income streams
fig, ax = plt.subplots(figsize=(10, 6))
b_sum = np.zeros(T+1)
for i in range(250):
w, b, c = time_path(T) # Generate new time path
rcolor = random.choice(('c', 'g', 'b', 'k'))
ax.plot(c, color=rcolor, lw=0.8, alpha=0.7)
ax.grid()
ax.set(xlabel='Time', ylabel='Consumption')
plt.show()Alternative Representations¶
In this section, we shed more light on the evolution of savings, debt and consumption by representing their dynamics in several different ways.
Hall’s Representation¶
Hall Hall (1978) suggested an insightful way to summarize the implications of LQ permanent income theory.
First, to represent the solution for , shift (13) forward one period and eliminate by using (5) to obtain
If we add and subtract from the right side of the preceding equation and rearrange, we obtain
The right side is the time innovation to the expected present value of the endowment process .
We can represent the optimal decision rule for in the form of (27) and (12), which we repeat:
Equation (28) asserts that the consumer’s debt due at equals the expected present value of its endowment minus the expected present value of its consumption stream.
A high debt thus indicates a large expected present value of surpluses .
Recalling again our discussion on forecasting geometric sums, we have
Using these formulas together with (6) and substituting into (27) and (28) gives the following representation for the consumer’s optimum decision rule:
Representation (30) makes clear that
The state can be taken as .
The endogenous part is and the exogenous part is .
Debt has disappeared as a component of the state because it is encoded in .
Consumption is a random walk with innovation .
This is a more explicit representation of the martingale result in (10).
Cointegration¶
Representation (30) reveals that the joint process possesses the property that Engle and Granger Engle & Granger (1987) called cointegration.
Cointegration is a tool that allows us to apply powerful results from the theory of stationary stochastic processes to (certain transformations of) nonstationary models.
To apply cointegration in the present context, suppose that is asymptotically stationary [3].
Despite this, both and will be non-stationary because they have unit roots (see (17) for ).
Nevertheless, there is a linear combination of that is asymptotically stationary.
In particular, from the second equality in (30) we have
Hence the linear combination is asymptotically stationary.
Accordingly, Granger and Engle would call a cointegrating vector for the state.
When applied to the nonstationary vector process , it yields a process that is asymptotically stationary.
Equation (31) can be rearranged to take the form
Equation (32) asserts that the cointegrating residual on the left side equals the conditional expectation of the geometric sum of future incomes on the right [4].
Cross-Sectional Implications¶
Consider again (30), this time in light of our discussion of distribution dynamics in the lecture on linear systems.
The dynamics of are given by
or
The unit root affecting causes the time variance of to grow linearly with .
In particular, since is IID, we have
where
When , has no asymptotic distribution.
Let’s consider what this means for a cross-section of ex-ante identical consumers born at time 0.
Let the distribution of represent the cross-section of initial consumption values.
Equation (35) tells us that the variance of increases over time at a rate proportional to .
A number of different studies have investigated this prediction and found some support for it (see, e.g., Deaton & Paxson (1994), Storesletten et al. (2004)).
Impulse Response Functions¶
Impulse response functions measure responses to various impulses (i.e., temporary shocks).
The impulse response function of to the innovation is a box.
In particular, the response of to a unit increase in the innovation is for all .
Moving Average Representation¶
It’s useful to express the innovation to the expected present value of the endowment process in terms of a moving average representation for income .
The endowment process defined by (6) has the moving average representation
where
Notice that
It follows that
The object is the present value of the moving average coefficients in the representation for the endowment process .
Two Classic Examples¶
We illustrate some of the preceding ideas with two examples.
In both examples, the endowment follows the process where
Here
is an IID process distributed as .
is a permanent component of .
is a purely transitory component of .
Example 1¶
Assume as before that the consumer observes the state at time .
In view of (30) we have
Formula (42) shows how an increment to the permanent component of income leads to
a permanent one-for-one increase in consumption and
no increase in savings
But the purely transitory component of income leads to a permanent increment in consumption by a fraction of transitory income.
The remaining fraction is saved, leading to a permanent increment in .
Application of the formula for debt in (17) to this example shows that
This confirms that none of is saved, while all of is saved.
The next figure displays impulse-response functions that illustrates these very different reactions to transitory and permanent income shocks.
r = 0.05
β = 1 / (1 + r)
S = 5 # Impulse date
σ1 = σ2 = 0.15
def time_path_impulse(T, permanent=False):
"Time path of consumption and debt given shock sequence"
w1 = np.zeros(T+1)
w2 = np.zeros(T+1)
b = np.zeros(T+1)
c = np.zeros(T+1)
if permanent:
w1[S+1] = 1.0
else:
w2[S+1] = 1.0
for t in range(1, T):
b[t+1] = b[t] - σ2 * w2[t]
c[t+1] = c[t] + σ1 * w1[t+1] + (1 - β) * σ2 * w2[t+1]
return b, c
fig, axes = plt.subplots(2, 1, figsize=(10, 8))
titles = ['permanent', 'transitory']
L = 0.175
for ax, truefalse, title in zip(axes, (True, False), titles):
b, c = time_path_impulse(T=20, permanent=truefalse)
ax.set_title(f'Impulse reponse: {title} income shock')
ax.plot(c, 'g-', label="consumption")
ax.plot(b, 'b-', label="debt")
ax.plot((S, S), (-L, L), 'k-', lw=0.5)
ax.grid(alpha=0.5)
ax.set(xlabel=r'Time', ylim=(-L, L))
axes[0].legend(loc='lower right')
plt.tight_layout()
plt.show()Notice how the permanent income shock provokes no change in assets and an immediate permanent change in consumption equal to the permanent increment in non-financial income.
In contrast, notice how most of a transitory income shock is saved and only a small amount is saved.
The box-like impulse responses of consumption to both types of shock reflect the random walk property of the optimal consumption decision.
Example 2¶
Assume now that at time the consumer observes , and its history up to , but not .
Under this assumption, it is appropriate to use an innovation representation to form in (30).
The discussion in sections 2.9.1 and 2.11.3 of Ljungqvist & Sargent (2018) shows that the pertinent state space representation for is
where
the stationary Kalman gain
In the same discussion in Ljungqvist & Sargent (2018) it is shown that and that increases as does.
In other words, increases as the ratio of the standard deviation of the permanent shock to that of the transitory shock increases.
Please see the Kalman filter lecture for more details.
Applying formulas (30) implies
where the endowment process can now be represented in terms of the univariate innovation to as
Equation (46) indicates that the consumer regards
fraction of an innovation to as permanent
fraction as purely transitory
The consumer permanently increases his consumption by the full amount of his estimate of the permanent part of , but by only times his estimate of the purely transitory part of .
Therefore, in total, he permanently increments his consumption by a fraction of .
He saves the remaining fraction .
According to equation (46), the first difference of income is a first-order moving average.
Equation (45) asserts that the first difference of consumption is IID.
Application of formula to this example shows that
This indicates how the fraction of the innovation to that is regarded as permanent influences the fraction of the innovation that is saved.
Further Reading¶
The model described above significantly changed how economists think about consumption.
While Hall’s model does a remarkably good job as a first approximation to consumption data, it’s widely believed that it doesn’t capture important aspects of some consumption/savings data.
For example, liquidity constraints and precautionary savings appear to be present sometimes.
Further discussion can be found in, e.g., Hall & Mishkin (1982), Parker (1999), Deaton (1991), Carroll (2001).
Appendix: The Euler Equation¶
Where does the first-order condition (9) come from?
Here we’ll give a proof for the two-period case, which is representative of the general argument.
The finite horizon equivalent of the no-Ponzi condition is that the agent cannot end her life in debt, so .
From the budget constraint (5) we then have
Here and are given constants.
Substituting these constraints into our two-period objective gives
You will be able to verify that the first-order condition is
Using gives (9) in the two-period case.
The proof for the general case is similar.
A linear marginal utility is essential for deriving (10) from (9). Suppose instead that we had imposed the following more standard assumptions on the utility function: and required that . The Euler equation remains (9). But the fact that implies via Jensen’s inequality that . This inequality together with (9) implies that (consumption is said to be a ‘submartingale’), so that consumption stochastically diverges to . The consumer’s savings also diverge to .
An optimal decision rule is a map from the current state into current actions---in this case, consumption.
This would be the case if, for example, the spectral radius of is strictly less than one.
See Campbell & Shiller (1988), Lettau & Ludvigson (2001), Lettau & Ludvigson (2004) for interesting applications of related ideas.
A moving average representation for a process is said to be fundamental if the linear space spanned by is equal to the linear space spanned by . A time-invariant innovations representation, attained via the Kalman filter, is by construction fundamental.
- Friedman, M. (1956). A Theory of the Consumption Function. Princeton University Press.
- Hall, R. E. (1978). Stochastic Implications of the Life Cycle-Permanent Income Hypothesis: Theory and Evidence. Journal of Political Economy, 86(6), 971–987.
- Ljungqvist, L., & Sargent, T. J. (2018). Recursive Macroeconomic Theory (4th ed.). MIT Press.
- Engle, R. F., & Granger, C. W. J. (1987). Co-integration and Error Correction: Representation, Estimation, and Testing. Econometrica, 55(2), 251–276.
- Deaton, A., & Paxson, C. (1994). Intertemporal Choice and Inequality. Journal of Political Economy, 102(3), 437–467.
- Storesletten, K., Telmer, C. I., & Yaron, A. (2004). Consumption and risk sharing over the life cycle. Journal of Monetary Economics, 51(3), 609–633.
- Hall, R. E., & Mishkin, F. S. (1982). The Sensitivity of Consumption to Transitory Income: Estimates from Panel Data on Households. National Bureau of Economic Research Working Paper Series, No. 505.
- Parker, J. A. (1999). The Reaction of Household Consumption to Predictable Changes in Social Security Taxes. American Economic Review, 89(4), 959–973.
- Deaton, A. (1991). Saving and Liquidity Constraints. Econometrica, 59(5), 1221–1248.
- Carroll, C. D. (2001). A Theory of the Consumption Function, with and without Liquidity Constraints. Journal of Economic Perspectives, 15(3), 23–45.
- Campbell, J. Y., & Shiller, R. J. (1988). The Dividend-Price Ratio and Expectations of Future Dividends and Discount Factors. Review of Financial Studies, 1(3), 195–228.
- Lettau, M., & Ludvigson, S. (2001). Consumption, Aggregate Wealth, and Expected Stock Returns. Journal of Finance, 56(3), 815–849.
- Lettau, M., & Ludvigson, S. C. (2004). Understanding Trend and Cycle in Asset Values: Reevaluating the Wealth Effect on Consumption. American Economic Review, 94(1), 276–299.