forked from lnsongxf/BufferStockTheory-2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
BufferStockTheory-NoAppendix.tex
executable file
·1332 lines (1060 loc) · 135 KB
/
BufferStockTheory-NoAppendix.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% -*- mode: LaTeX; TeX-PDF-mode: t; -*-
\input{./econtexRoot}\documentclass[BufferStockTheory]{subfiles}
% WARNING: AuCTeX local variables only get reset when emacs loads
% file, and differ between this file and BufferStockTheory.tex
% so must re-load whichever file you want to compile with C-x C-v
% WARNING: Different AucTeX execution depending on whether
% 0. Being compiled as standalone document
% * Compile main to completion
% * Then compile this one
% * Keep compiling until nothing changes
% 0. Being compiled as subfile of main document
% * Just compile main document repeatedly
\input{./econtexRoot}\input{\LaTeXInputs/econtex_onlyinsubfile}
\onlyinsubfile{\externaldocument{BufferStockTheory}} % Get xrefs -- esp to apndx -- from main file; only works if main file has already been compiled
% % Redefine commands from sty file to signal compilation from master
\newcommand{\thankstext}{
The paper's results \href{https://\owner.github.io/nbreproduce}{can be automatically reproduced} using the {\ARKurl} toolkit, which can be cited per our references (\cite{carroll_et_al-proc-scipy-2018}); for reference to the toolkit itself see \href{https://econ-ark.org/acknowledging}{Acknowledging Econ-ARK}. Thanks to the \href{https://consumerfinance.gov}{Consumer Financial Protection Bureau} for funding the original creation of the {\ARKurl} toolkit; and to the \href{https://sloan.org}{Sloan Foundation} for funding Econ-ARK's \href{https://sloan.org/grant-detail/8071}{extensive further development} that brought it to the point where it could be used for this project. The toolkit can be cited with its digital object identifier, \href{https://doi.org/10.5281/zenodo.1001067}{10.5281/zenodo.1001067}, as is done in the paper's own references as \cite{carroll_et_al-proc-scipy-2018}. Thanks to Will Du, James Feigenbaum, Joseph Kaboski, Miles Kimball, Qingyin Ma, Misuzu Otsuka, Damiano Sandri, John Stachurski, Adam Szeidl, Alexis Akira Toda, Metin Uyanik, Mateo Vel\'asquez-Giraldo, Weifeng Wu, Jiaxiong Yao, and Xudong Zheng for comments on earlier versions of this paper, John Boyd for help in applying his weighted contraction mapping theorem, Ryoji Hiraguchi for extraordinary mathematical insight that improved the paper greatly, David Zervos for early guidance to the literature, and participants in a seminar at the Johns Hopkins University, a presentation at the 2009 meetings of the Society of Economic Dynamics for their insights, and at a presentation at the Australian National University.}
% \newcommand{\inframe}{https://\owner.github.io/BufferStockTheory/BufferStockTheory3.html}
% Embed metadata
\hypersetup{pdfauthor={Christopher D. Carroll <[email protected]>},
pdftitle={Theoretical Foundations of Buffer Stock Saving},
pdfkeywords={Precautionary saving, buffer-stock saving, consumption, marginal propensity to consume, permanent income hypothesis, income fluctuation problem},
pdfnewwindow=true,
pdfcreator = {[email protected]}
}
\begin{document}
% Attempted to make all lines used for Web version contain {Web} (or version with only single curly brace at end) so can be removed with sed
\ifthenelse{\boolean{Web}}{ % {Web}
\renewcommand{\versn}{Web} % Too hard to figure out passing -output-directory through make4ht through htlatex, so web version is compiled with junk files in main directory
\renewcommand{\rootFromOut}{.} % {Web}
}{} % {Web}
% Tiny info header at top tracks git commit
%\hfill{\tiny \jobname~\versn~\today~{at} \DTMcurrenttime, \input{\ResourcesDir/.git-source-commit}~~\input{\ResourcesDir/.git-public-commit}}
\title{Theoretical Foundations of \\ Buffer Stock Saving}
\author{Christopher D. Carroll\authNum}
\keywords{Precautionary saving, buffer stock saving, marginal propensity to consume, permanent income hypothesis, income fluctuation problem}
\jelclass{D81, D91, E21 \par
\href{https://econ-ark.org}{\includegraphics{\ResourcesDir/PoweredByEconARK}}
}
% \date{\today}
\renewcommand{\forcedate}{April 24, 2023}\date{\forcedate}
\maketitle
\hypertarget{abstract}{}
\begin{abstract}
This paper builds foundations for rigorous and intuitive understanding of `buffer stock' saving models (\cite{bewleyPIH}-like models with a wealth target), pairing each theoretical result with quantitative illustrations. After describing conditions under which a consumption function exists, the paper articulates stricter `Growth Impatience' conditions that guarantee alternative forms of stability --- either at the population level, or for individual consumers. Together, the numerical tools and analytical results constitute a comprehensive toolkit for understanding buffer stock models.
\end{abstract}
% Various resources
\hypertarget{links}{}
\newcommand{\REMARK}{\href{https://github.com/econ-ark/REMARK}{REMARK}}
\begin{footnotesize}
\parbox{0.9\textwidth}{
\begin{center}
\begin{tabbing}
\texttt{~~~\REMARK:~} \= \= \texttt{\url{https://econ-ark.org/materials/bufferstocktheory}} \\
\texttt{Dashboard:~} \> \> \texttt{\href{https://econ-ark.org/materials/bufferstocktheory}{Click `Launch Dashboard' Button}} \\
\texttt{~~~~~html:~} \> \> \texttt{\href{https://\owner.github.io/BufferStockTheory/}{https://\owner.github.io/BufferStockTheory/}} \\ % Owner is defined in Resources/owner.tex
\texttt{~~~~~~PDF:~} \> \> \texttt{\href{https://github.com/\owner/BufferStockTheory/blob/master/BufferStockTheory.pdf}{BufferStockTheory.pdf}} \\
\texttt{~~~Slides:~} \> \> \texttt{\href{https://github.com/\owner/BufferStockTheory/blob/master/LaTeX/BufferStockTheory-Slides.pdf}{BufferStockTheory-Slides.pdf}} \\
% \texttt{~Appendix:~} \> \> \texttt{\url{https://\owner.github.io/BufferStockTheory/BufferStockTheory3.html#Appendices}} \\
\texttt{~~~GitHub:~} \> \> \texttt{\href{https://github.com/\owner/BufferStockTheory}{https://github.com/\owner/BufferStockTheory}} \\
\end{tabbing}
\end{center}
% The \href{https://econ-ark.org/materials/bufferstocktheory\?dashboard}{dashboard} lets users see consequences of alternative parameters in an interactive framework.
} % end \parbox{\textwidth}
\end{footnotesize}
\begin{authorsinfo}
\name{Contact: \href{mailto:[email protected]}{\texttt{[email protected]}}, Department of Economics, 590 Wyman Hall, Johns Hopkins University, Baltimore, MD 21218, \url{https://www.econ2.jhu.edu/people/ccarroll}, and National Bureau of Economic Research.}
\end{authorsinfo}
\pagenumbering{gobble} % Prevent numbering for pages including the TOC and title page
\ifthenelse{\boolean{Web}}{
}{
\begin{minipage}{0.9\textwidth}
\footnotesize The paper's results \href{https://\owner.github.io/nbreproduce}{can be automatically reproduced} using the {\ARKurl} toolkit by executing the \href{https://econ-ark.org/materials/bufferstocktheory}{notebook}; for reference to the toolkit itself see \href{https://econ-ark.org/acknowledging}{Acknowleding Econ-ARK}. Thanks to the \href{https://consumerfinance.gov}{Consumer Financial Protection Bureau} for funding the original creation of the {\ARKurl} toolkit; and to the \href{https://sloan.org}{Sloan Foundation} for funding Econ-ARK's \href{https://sloan.org/grant-detail/8071}{extensive further development} that brought it to the point where it could be used for this project. The toolkit can be cited with its digital object identifier, \href{https://doi.org/10.5281/zenodo.1001067}{https://doi.org/10.5281/zenodo.1001067}, as is done in the paper's own references as \cite{carroll_et_al-proc-scipy-2018}. Thanks to Will Du, James Feigenbaum, Joseph Kaboski, Miles Kimball, Qingyin Ma, Misuzu Otsuka, Damiano Sandri, John Stachurski, Adam Szeidl, Alexis Akira Toda, Metin Uyanik, Mateo Vel\'asquez-Giraldo, Weifeng Wu, Jiaxiong Yao, and Xudong Zheng for comments on earlier versions of this paper, John Boyd for help in applying his weighted contraction mapping theorem, Ryoji Hiraguchi for extraordinary mathematical insight that improved the paper greatly, David Zervos for early guidance to the literature, and participants in a seminar at the Johns Hopkins University, a presentation at the 2009 meetings of the Society of Economic Dynamics for their insights, and at a presentation at the Australian National University.
\end{minipage}
\titlepagefinish\pagebreak
\let\LaTeXStandardContentsName\contentsname
\renewcommand{\contentsname}{}
\tableofcontents
\pagebreak
\medskip\medskip
\begin{minipage}{0.9\textwidth}
\listoffigures
\end{minipage}
\medskip\medskip
\begin{minipage}{0.9\textwidth}
\listoftables
\end{minipage}
} % {Web}
\pagebreak
\hypertarget{Introduction}{}
\section{Introduction}\label{sec:intro}
\setcounter{page}{0}\pagenumbering{arabic}
For consumers whose income is affected by realistic transitory and permanent shocks (\textit{a la}~\cite{friedmanATheory} and~\cite{muthOptimal}), only one further ingredient is required to construct a microeconomically testable model of optimal consumption: A description of preferences. \cite{zeldesStochastic} was the first to calibrate a quantitatively plausible example, spawning a literature showing that such models' predictions can match household life cycle data reasonably well, whether or not explicit liquidity constraints are imposed.\footnote{See~\cite{carrollBSLCPIH} or~\cite{gpLifeCycle} for arguments that models with only `natural' constraints (see below) match a wide variety of facts; for a model with explicit constraints that produces very similar results, see, e.g.~\cite{Cagetti}.}
A connected literature, starting with~\cite{bewleyPIH}, has derived limiting properties of related infinite-horizon problems -- but only in models more complex than the case with just Friedman-Muth shocks and preferences, because standard contraction mapping theorems (from \cite{bellmanDynamicProgramming} through Stokey et~al.~\citeyearpar{slpMethods} and beyond) cannot be applied when utility and/or marginal utility are unbounded, and many proof methods rule out Friedman-Muth permanent shocks.\footnote{See \hyperlink{DiffFromLit}{the fuller discussion} at the end of Section~\ref{subsec:Setup}.}
This paper's first contribution is to articulate conditions under which the infinite-horizon Friedman-Muth(-Zeldes) problem (with permanent shocks, and without complications like a consumption floor or liquidity constraints) defines a contraction mapping whose limit is \hyperlink{useful}{useful} (neither $c=0$ nor $c=\infty$ everywhere) as the horizon recedes. A \hyperlink{FVAC}{`Finite Value of Autarky Condition'} is mostly sufficient (the \hyperlink{WRIC}{`Weak Return Impatience Condition'}\footnote{This is a generalization of a condition in~\cite{mstIncFluct}.} is unlikely to bind). Because the infinite-horizon solution is the limit of finite-horizon recursions, many results are also applicable to finite-horizon problems.
But the main theoretical contribution is to identify, for the infinite-horizon case, conditions under which `stable' points exist (the ratio of wealth to permanent income will move toward a `target'; alternatively, there is a `balanced growth' equilibrium) either for individual consumers or for the aggregate. The requirement for stability is always that the model's parameters satisfy a `Growth Impatience Condition' whose details depend on the quantity whose stability is of interest. A model with any such stable point(s) qualifies as a `buffer stock' model. (Buffer stock models are neither a subset nor a superset of~\cite{bewleyPIH} models -- see below).\footnote{Bewley models traditionally do not allow permanent shocks, and do not definitionally require existence of `stable' points (though such points will often exist).}
\hypertarget{KMP}{} Even without a formal proof of its existence, buffer stock saving has been intuitively understood to underlie key results in heterogeneous agent macroeconomics; for example, the logic of target saving is central to the claim by~\cite{kmpHandbook} in the \textit{Handbook of Macroeconomics} that such models explain why, during the Great Recession, middle-class consumers cut their spending more than the poor or the rich. Theory below provides the rigorous basis for this claim: Learning that the future has become more uncertain does not change the urgent imperatives of the poor (their high $\uFunc^{\prime}(\cNrm)$ means they --- optimally --- have little room to maneuver). And, increased labor income uncertainty does not much change the behavior of the rich because it poses little risk to their consumption. Only people in the middle have both the motivation and the wiggle-room to respond to uncertainty by substantially reducing their spending. Analytical derivations required for the proofs also provide intuition for many other results familiar from the numerical literature.
The paper begins by describing sufficient conditions for the problem to define a \hyperlink{sensible}{sensible} (nondegenerate) limiting consumption function (while explaining how the model relates to those previously considered). The conditions are interestingly parallel to those required for the \hyperlink{Factors-Defined-And-Compared}{liquidity constrained perfect foresight model}; that parallel is explored and explained. The limiting properties of the consumption function as resources approach infinity, and as they approach their lower bound, are then used to prove the contraction mapping theorem.
The next theoretical contribution is to show that a model with an `artificial' liquidity constraint (it prohibits borrowing by consumers who could certainly repay) is a limiting case of the unconstrained model. The analytical appeal of the unconstrained model is that it is both mathematically convenient (the consumption function is everywhere twice continuously differentiable), and arbitrarily close (cf.\ Section~\ref{sec:deatonIsLimit}) to less tractable models. This congenial environment makes proofs easier (if we define a proposition as holding in the infinite-horizon limit when it holds as a finite horizon extends to infinity).
In proving the remaining theorems, the \hyperlink{AnalysisoftheConvergedConsumptionFunction}{next section} examines key properties of the model. First, \hyperlink{LimitsAsmtToInfty}{as cash approaches infinity} the expected growth rate of consumption and the marginal propensity to consume (MPC) converge to their values in the perfect foresight case. Second, \hyperlink{LimitsAsmtToZero}{as cash approaches zero} the expected growth rate of consumption approaches infinity, and the MPC approaches a simple analytical limit. Next, the central theorems articulate conditions under which different measures of `growth impatience' imply conclusions about points of stability (`target' or `balanced growth' points).
The final section elaborates the conditions under which, even with a fixed aggregate interest rate that differs from the time preference rate, a small open economy populated by buffer stock consumers has a balanced growth equilibrium in which growth rates of consumption, income, and wealth match the exogenous growth rate of permanent income (equivalent, here, to productivity growth). In the terms of~\cite{schmitt2003closing}, buffer stock saving is an appealing method of `closing' a small open economy, because it requires no \textit{ad-hoc} assumptions. Not even liquidity constraints.\footnote{The paper's insights are instantiated in the {\ARKurl} toolkit, whose \href{https://hark.readthedocs.io/en/stable/reference/ConsumptionSaving/ConsIndShockModel.html}{buffer stock saving module} flags parametric choices under which a problem is degenerate or under which stable ratios of wealth to income may not exist.}
% Keep track of where you are via header at top of PDF
\ifthenelse{\boolean{Web}}{}{% else
\automark{subsection}
} % {Web}
\hypertarget{The-Problem}{}
\section{The Problem}
\subsection{Setup}\label{subsec:Setup}
The infinite horizon solution is the (limiting) first-period solution to a sequence of finite-horizon problems as the horizon (the last period of life) becomes arbitrarily distant.
\hypertarget{sensible}{}\hypertarget{useful}{}
That is, for the value function, fixing a terminal date $T$, we are interested in $\vLvl_{T-n}$ in the sequence of value functions $\{\vLvl_{T},\vLvl_{T-1},\ldots,\vLvl_{T-n}\}$. We will say that the problem has a `nondegenerate' infinite horizon solution if, corresponding to that $\vLvl$, as $n \uparrow \infty$ there is a limiting consumption function $\usual{\cLvl}(\mLvl,\pLvl) = \lim_{n \uparrow \infty} \cLvl_{T-n}(\mLvl,\pLvl)$ which is neither $\usual{\cLvl}=0$ everywhere (for all $\mLvl,\pLvl$) nor $\usual{\cLvl}=\infty$ everywhere (a `sensible' solution).
Concretely, a consumer born $n$ periods before date $T$ solves the problem\footnote{Notation throughout follows guidelines specified for the {\ARKurl} toolkit; see \href{https://github.com/econ-ark/HARK/blob/master/Documentation/NARK/NARK.pdf}{Notation in the ARK} for rationales and details. (Consequently, there is an exact mapping between objects in the paper and objects in the code.)}
\begin{verbatimwrite}{\EqDir/supfn}
\begin{align*}
\vLvl_{T-n} & = \max~ \Ex_{t}\left[\sum_{i=0}^{n} \DiscFac^{i} \uFunc(\cLvl_{t+i})\right]
\end{align*}
\end{verbatimwrite}
\input{\LtxDir\EqDir/supfn}
where the Constant Relative Risk Aversion (CRRA) utility function
\begin{align*}
\uFunc(\bullet)=\bullet^{1-\CRRA}/(1-\CRRA)
\end{align*}
exhibits relative risk aversion $\CRRA > 1$.\footnote{The main results also hold for logarithmic utility which is the limit as $\CRRA \rightarrow 1$ but incorporating the logarithmic special case in the proofs is omitted because it would be cumbersome.} The consumer's initial condition is defined by market resources $\mLvl_{t}$ and permanent noncapital income $\PermLvl_{t}$, which both are positive,
\begin{align}
\{\PermLvl_{t},\mLvl_{t}\} & \in (0,\infty) \label{eq:PermLvlandmLvlgt0},
\end{align}
and the consumer cannot die in debt,
\begin{align}
\cLvl_{T} & \leq \mLvl_{T} \label{eq:NoDebtAtDeath}.
\end{align}
\hypertarget{checkRestrictions}{}
\hypertarget{DBCparts}{}
In the usual exposition, a dynamic budget constraint (DBC) combines several distinct events that jointly determine next period's $\mLvl_{t+1}$ (given this period's choices); for the detailed analysis here, we disarticulate and describe every separate step:\footnote{The steps are broken down also so that the notation of the paper will correspond exactly to the variable names in the \href{https://github.com/econ-ark/HARK} toolkit.}$^{,}$\footnote{Allowing a stochastic interest factor would complicate the notation but not affect the points we want to address; however, see~\cite{benhabibWealth},~\cite{maTodaRich}, and~\cite{mstIncFluct} for the implications of capital income risk for the distribution of wealth and other interesting questions not considered here.}
\begin{verbatimwrite}{\EqDir/DBCparts}
\begin{equation}\iflabelexists{eq:DBCparts}{}{\label{eq:DBCparts}} % Don't define it if already defined
\begin{split}
\aLvl_{t} & = \mLvl_{t}-\cLvl_{t}
\\ \kLvl_{t+1} & = \aLvl_{t} \notag
\\ \bLvl_{t+1} & = \kLvl_{t+1} \Rfree \notag \\
\PermLvl_{t+1} & = \PermLvl_{t} \underbrace{\PermGroFac\PermShk_{t+1}}_{\equiv \PermGroFac_{t+1}} \notag \\
\mLvl_{t+1} & = \bLvl_{t+1} +\PermLvl_{t+1}\TranShkAll_{t+1},\notag
\end{split}
\end{equation}
\end{verbatimwrite}
\input{\LtxDir\EqDir/DBCParts}
\noindent where $\aLvl_{t}$ measures the consumer's assets at the end of $t$, which translate one-for-one into capital $\kLvl_{t+1}$ at the beginning of the next period. Before the consumption choice, $\kLvl_{t+1}$ is augmented by a fixed interest factor $\Rfree =(1+\rfree)$ to become $\bLvl_{t+1}$ -- the consumer's financial (`\textbf{b}ank') balances before next period's consumption choice; $\mLvl_{t+1}$ (`market resources') is the sum of financial wealth $\bLvl_{t+1}$ and noncapital income $\PermLvl_{t+1}\TranShkAll_{t+1}$ (permanent noncapital income $\PermLvl_{t+1}$ multiplied by the transitory-income-shock factor $\TranShkAll_{t+1}$ described below). $\pLvl_{t+1}$ is derived from $\pLvl_{t}$ via application of a growth factor $\PermGroFac$,\footnote{A time-varying $\PermGroFac$ has straightforward consequences for the analysis below; this is an option in the \href{https://econ-ark.org}{HARK} toolkit.} modified by a mean-one iid shock $\PermShk_{t+1}$, $\Ex_{t}[{\PermShk}_{t+n}]=1~\forall~n \geq 1$ satisfying $\PermShk \in [\ushort{\PermShk},\bar{\PermShk}]$ for $0 < \ushort{\PermShk} \leq 1 \leq \bar{\PermShk} < \infty$ (and $\ushort{\PermShk}=\bar{\PermShk}=1$ is the degenerate case with no permanent shocks).
Following~\cite{zeldesStochastic}, in future periods $t+n~\forall~n \geq 1$ there is a small probability $\pZero$ that income will be zero (a `zero-income event'),
\begin{verbatimwrite}{\EqDir/TranShkDef}
\begin{equation}
\TranShkAll_{t+n}=
\begin{cases}
0\phantom{_{t+1}/\pNotZero} & \text{with probability $\pZero>0$} \\
\TranShkEmp_{t+n}/\pNotZero & \text{with probability $\pNotZero $} % \equiv (1-\pZero)
\end{cases} \label{eq:TranShkDef}
\end{equation}
\end{verbatimwrite}
\input{\LtxDir\EqDir/TranShkDef}
\noindent where $\TranShkEmp_{t+n}$ is an iid mean-one random variable ($\Ex_{t}[{\TranShkEmp}_{t+n}]=1~\forall~n>0$) whose distribution satisfies $\TranShkEmp \in \lbrack \ushort{\TranShkEmp},\bar{\TranShkEmp}\rbrack$ where $0<\ushort{\TranShkEmp} \leq 1 \leq \bar{\TranShkEmp}<\infty$.\footnote{\cite{rabaultBorrowing} and~\cite{lsIncFluct} analyze cases where the shock processes have unbounded support.} Call the cumulative distribution functions $\CDF_{\PermShk}$ and $\CDF_{\TranShkEmp}$ (where $\CDF_{\TranShkAll}$ is derived trivially from~\eqref{eq:TranShkDef} and $\CDF_{\TranShkEmp}$). For quick identification in tables and graphs, we will call this the `Friedman/Muth' model because it is a specific implementation of~\cite{friedmanATheory}'s ideas as interpreted by~\cite{muthOptimal}.
\hypertarget{PDV}{}
The model looks more special than it is. In particular, a positive probability of zero-income events may seem objectionable (despite empirical support).\footnote{We calibrate this probability to 0.005 to match data from the Panel Study of Income Dynamics (\cite{carrollBrookings}).} But a nonzero minimum value of $\TranShkAll$ (motivated, say, by the existence of unemployment insurance) could be handled by capitalizing the PDV of minimum income into current market assets,\footnote{So long as unemployment benefits are proportional to $\PermLvl_{t}$; see the discussion in Section~\ref{sec:discussConvergence}.} transforming that model back into this one. And no key results would change if the transitory shocks were persistent but mean-reverting (instead of IID).\@ Also, the assumption of a positive point mass for the worst realization of the transitory shock is inessential, but simplifies the proofs and is a powerful aid to intuition.%\footnote{A positive density over a positive interval above the lower bound would work instead but would be cumbersome.}
\hypertarget{cfLiterature}{}
\subsection{Comparison to Existing Literature}\label{subsec:Lit}
\hypertarget{DiffFromLit}{} This model differs from Bewley's~\citeyearpar{bewleyPIH} classic formulation in several ways. The CRRA utility function does not satisfy Bewley's assumption that $\uFunc(0)$ is well-defined, or that $\uP(0)$ is well-defined and finite; indeed, neither the value function nor the marginal value function will be bounded. It differs from Schectman and Escudero~\citeyearpar{seIncFluct} in that they impose liquidity constraints and positive minimum income. It differs from both of these in that it permits permanent growth in income, and also permanent shocks to income, which a large empirical literature finds to be of dominant importance in microdata.\footnote{MaCurdy~\citeyearpar{macurdyTimeseries}; Abowd and Card~\citeyearpar{acCovariance}; Carroll and Samwick~\citeyearpar{csNature}; Jappelli and Pistaferri~\citeyearpar{jpCins}; et. seq. Much of the literature instead incorporates highly `persistent' but not completely permanent shocks, but~\cite{dhmImproving} show that when measurement problems are handled correctly, admin data yield serial correlation coefficients $0.98-1.00$; and~\cite{dmHowMuch} suggests that survey data support the same conclusion.} It differs from Deaton~\citeyearpar{deatonLiqConstr} because liquidity constraints are absent; there are separate transitory and permanent shocks (\textit{a la}~\cite{muthOptimal}); and the transitory shocks here can occasionally cause income to reach zero.
It differs from models found in Stokey et.\ al.~\citeyearpar{slpMethods} because neither liquidity constraints nor bounds on utility or marginal utility are imposed.\footnote{Similar restrictions are made in the well known papers by Scheinkman and Weiss~\citeyearpar{scheinkman&weiss:borrowing}, Clarida~\citeyearpar{claridaErgodic}, and~\cite{cwcUnderUncert}. See~\cite{tocheUrisk} for elegant analysis of a related but simpler continuous-$t$ model.}$^{,}$\footnote{\cite{asHomogeneous} relaxed the bounds on the return function, but they address only the deterministic case.}~\cite{lsIncFluct} show how to allow unbounded returns by using policy function iteration, but also impose constraints.
The paper with perhaps the most commonalities is~\cite{mstIncFluct}, henceforth MST, who establish existence and uniqueness of a solution to a general income fluctuation problem in a Markovian setting. The most important differences are that MST impose liquidity constraints and that expected marginal utility of income is finite ($\Ex[\uFunc^{\prime}(Y)]<\infty)$. These assumptions are not consistent with the combination of CRRA utility and income dynamics used here, whose joint properties are key to the results.\footnote{The incorporation of permanent shocks rules out application of the tools of~\cite{mnUnique}, who followed and corrected an error in the fundamental work on the local contraction mapping method developed in~\cite{rrExistence}.\@~\cite{mvExistence} provide a correction to~\cite{rrExistence}, that works under easier conditions to verify, but only addresses the deterministic case.}
\hypertarget{The-Problem-Can-Be-Rewritten-in-Ratio-Form}{}
\hypertarget{The-Problem-Can-Be-Normalized-By-Permanent-Income}{}
\subsection{The Problem Can Be Normalized By Permanent Income}\label{subsec:ratio}
We establish a bit more notation by reviewing the familiar result that in such problems (CRRA utility, permanent shocks) the number of states can be reduced from two ($\mLvl$ and $\PermLvl$) to one $(\mNrm = \mLvl/\PermLvl)$. Value in the last period is $\uFunc(\mLvl_{T})$; using (in the last line in~\eqref{eq:vBold}) the fact that for our CRRA utility function, $\uFunc(xy) = x^{1-\CRRA}\uFunc(y)$, and generically defining nonbold variables as the boldface counterpart normalized by $\PermLvl_{t}$ (as with $\mNrm=\mLvl/\PermLvl$), consider the problem in the second-to-last period,
\begin{equation}\label{eq:vBold}
\begin{split}
\vLvl_{T-1}(\mLvl_{T-1},\PermLvl_{T-1})
& = \max_{\cNrm_{T-1}}~
\uFunc(\PermLvl_{T-1}\cNrm_{T-1}) + \DiscFac \Ex_{T-1} [\uFunc(\PermLvl_{T}{\mNrm}
_{T})] \\
& = \PermLvl_{T-1}^{1-\CRRA}
\left\{\max_{\cNrm_{T-1}}~ \uFunc(c_{T-1}) + \DiscFac \Ex_{T-1} [ \uFunc( {\PermGroFac}_{T}
{\mNrm}_{T}) ] \right\}.
\end{split}
\end{equation}
\hypertarget{The-Related-Problem}{}
Now, in a one-time deviation from the notational convention established in the last sentence, define nonbold `normalized value' not as $\vLvl_{t}/\PermLvl_{t}$ but as $\vFunc_{t} = \vLvl_{t}/\PermLvl_{t}^{1-\CRRA}$, because this allows us to exploit features of the related problem,
\begin{equation}\label{eq:veqn}
\begin{split}
% \begin{align*}
\vFunc_{t}(\mNrm_{t}) & = \max_{{\{\cFunc\}}_{t}^{T}}~ \uFunc(\cFunc_{t}) +\DiscFac \Ex_{t}[\PermGroFac_{t+1}^{1-\CRRA}\vFunc_{t+1}({\mNrm}_{t+1})] \\
& \mbox{s.t.}
\\ {\aNrm}_{t} & = \mNrm_{t}-c_{t}
\\ {\kNrm}_{t+1} & = \aNrm_{t}/\PermGroFac_{t+1}
\\ {\bNrm}_{t+1} & = {\kNrm}_{t+1}\Rfree = (\Rfree/\PermGroFac_{t+1})\aNrm_{t} ~ = ~ \RNrm_{t+1}\aNrm_{t}
\\ \mNrm_{t+1} & = \bNrm_{t+1}+\TranShkAll_{t+1} ,
% \end{align*}
\end{split}
\end{equation}
where $\RNrm_{t+1}\equiv (\Rfree/\PermGroFac_{t+1})$ is a `permanent-income-growth-normalized' return factor, and the reformulated problem's first order condition is\footnote{Leaving aside their assumptions about the marginal utility function and liquidity constraints, it is tempting to view this as a special case of the model of MST, with our $\RNrm_{t+1}=\Rfree/\PermGroFac_{t+1}$ (defined below equation~\eqref{eq:veqn}) corresponding to their stochastic rate of return on capital and the {\VAFacDefn} $\DiscFac \PermGroFac_{t+1}^{1-\CRRA}$ defined below~\eqref{eq:FVAC} corresponding to their stochastic discount factor. A caveat is that, here, $\RNrm_{t+1}$ and the modified discount factor are intimately connected (through $\PermGroFac_{t+1}$), which has profound consequences; see below.}% It would be interesting, and should not be too difficult, to examine the case with independent shocks to the rate of return and productivity growth.
\begin{align}
c_{t}^{-\CRRA} & = \Rfree \DiscFac \Ex_{t}[ {\PermGroFac}_{t+1}^{-\CRRA} {\cNrm}
_{t+1}^{-\CRRA}]. \label{eq:scaledeuler}
\end{align}
Since $\vFunc_{T}(\mNrm_{T}) = \uFunc(\mNrm_{T})$, defining $\vFunc_{T-1}(\mNrm_{T-1})$ from~\eqref{eq:veqn}, we obtain
\begin{align*}
\vLvl_{T-1}(\mLvl_{T-1},\PermLvl_{T-1}) & = \PermLvl_{T-1}^{1-\CRRA} \vFunc_{T-1}(\underbrace{\mLvl_{T-1}/\PermLvl_{T-1}}_{=\mNrm_{T-1}}).
\end{align*}
This logic induces to earlier periods; if we solve the normalized one-state-variable problem~\eqref{eq:veqn}, we will have solutions to the original problem for any $t<T$ from:
\begin{align*}
\vLvl_{t}(\mLvl_{t},\PermLvl_{t}) & = \PermLvl_{t}^{1-\CRRA}\vFunc_{t}(\mNrm_{t}),
\\ \cLvl_{t}(\mLvl_{t},\PermLvl_{t}) & = \PermLvl_{t}\cFunc_{t}(\mNrm_{t}).
\end{align*}
\hypertarget{Definition-of-a-Nondegenerate-Solution}{}
\subsection{Definition of a Nondegenerate Solution}
The problem has a nondegenerate solution if, as the horizon $n$ gets arbitrarily large, the solution in the first period of life $\usual{\cFunc}_{T-n}(\mNrm)$ gets arbitrarily close to a limiting $\usual{\cFunc}(\mNrm)$:
\begin{align*}
\usual{\cFunc}(\mNrm) & \equiv \lim_{n \rightarrow \infty} \cFunc_{T-n}(\mNrm) \notag
\end{align*}
that satisfies
\begin{align}
0 & < \usual{\cFunc}(\mNrm) < \infty
\end{align}
for every $0 < \mNrm < \infty$.
\hypertarget{Perfect-Foresight-Benchmarks}{}
\subsection{Perfect Foresight Benchmarks}
The familiar analytical solution to the perfect foresight model, obtained by setting $\pZero=0$ and $\ushort{\TranShkEmp}=\bar{\TranShkEmp}=\ushort{\PermShk}=\bar{\PermShk}=1$, allows us to define remaining notation and terminology.
\hypertarget{Human-Wealth}{}\hypertarget{hNrmDefn}{}
\subsubsection{The Finite Human Wealth Condition (FHWC)}
The dynamic budget constraint, strictly positive marginal utility, and the can't-die-in-debt condition~\eqref{eq:NoDebtAtDeath} imply an exactly-holding intertemporal budget constraint (IBC):
\begin{align}
\mathrm{PDV}_{t}^{T}(\cLvl) & = \overbrace{\mLvl_{t}-\PermLvl_{t}}^{\bLvl_{t}}+\overbrace{\mathrm{PDV}_{t}^{T}(\PermLvl)}^{\hLvl_{t}}, \label{eq:IBCFinite}
\end{align} \hypertarget{FHWFacDefn}{}\hypertarget{PFRNrmDefn}{}
where $\bLvl$ is beginning-of-period `market' balances; with $\RNrm \equiv \Rfree/\PermGroFac$ `human wealth' is
\begin{align}
\hLvl_{t} & = \PermLvl_{t}+\RNrm^{-1} \PermLvl_{t} + \RNrm^{-2} \PermLvl_{t} + \cdots + \RNrm^{t-T} \PermLvl_{t} \notag
\\ & = \underbrace{\left(\frac{1-\RNrm^{-(T-t+1)}}{1-\RNrm^{-1}}\right)}_{\equiv \hNrm_{t}}\PermLvl_{t} \label{eq:HDef}.
\end{align}\hypertarget{FHWC}{}
For $\hNrm \equiv \lim_{n \rightarrow \infty} \hNrm_{T-n}$ to be finite, we need the \hyperlink{FHWC}{Finite Human Wealth Condition}:
\begin{align}
\text{{\FHWC}:~~} \underbrace{\PermGroFac/\Rfree}_{\equiv \RNrm^{-1}} & < 1 \phantom{\text{{\FHWC}:~~}}\label{eq:FHWC}.
\end{align}
where we call $\PermGroFac/\Rfree$ the `Finite Human Wealth Factor' (\FHWFacDefn) because if this factor is less than one human wealth will be finite because (noncapital) income growth is smaller than the interest rate at which that income is being discounted.
\hypertarget{RIC}{}
\subsubsection{The Return Impatience Condition (RIC)} \label{subsubsec:RIC}
\hypertarget{AIC}{}
Without constraints, the consumption Euler equation always holds; with $\uP(\cLvl)=\cLvl^{-\CRRA}$, \hypertarget{APFacDefn}{}
\begin{align}
\cLvl_{t+1}/\cLvl_{t} & = \underbrace{{(\Rfree\DiscFac)}^{1/\CRRA}}_{\equiv \APFac} \label{eq:APFac}
\end{align}
where the archaic letter \href{https://en.wikipedia.org/wiki/Thorn_(letter)}{`thorn'} represents what we will call the `Absolute Patience Factor' because, if the `absolute impatience condition' holds,\footnote{Impatience conditions have figured in intertemporal optimization problems since the beginning, e.g.\ in~\cite{ramseySave}. These issues are so central that it would be hopeless to attempt to cite conditions in every other paper that correspond to conditions named and briefly exposited here. I make no claim to novelty for any condition aside from those implicated in my theorems, whose forerunners \textit{will} be articulated.}
\begin{align}
\label{eq:AIC}
\text{\AIC:~~} \APFac & < 1, \phantom{\text{\AIC:~~}}
\end{align}
the consumer's level of spending will be too large to sustain indefinitely. We call such a consumer `absolutely impatient.'\hypertarget{RPFacDefn}{}
% (Here, we interpret the time preference factor $\DiscFac$ as inclusive of any discounting that reflects the standard \cite{BlanchardFinite}-\cite{yaari1965uncertain} Poisson-Bernoulli mortality).
A `Return Patience Factor' relates absolute patience to the return factor:
\begin{align}
\text{\RPFacDefn:~~} \RPFac & \equiv {\APFac}/\Rfree \phantom{\text{\RPFacDefn:~~}}\label{eq:RPFac}
\end{align}
and since consumption is growing by $\APFac$ but discounted by $\Rfree$:
\begin{align*}
\mathrm{PDV}_{t}^{T}(\cLvl) & = \left(\frac{1-\RPFac^{T-t+1}}{1-\RPFac}\right)\cLvl_{t}
\end{align*}
from which the IBC~\eqref{eq:IBCFinite} implies
\begin{align}
\cLvl_{t} & = \overbrace{\left(\frac{1-\RPFac}{1-\RPFac^{T-t+1}}\right)}^{\equiv \MPCmin_{t}}
(\bLvl_{t}+\hLvl_{t}) \label{eq:WDef}
\end{align}
defining a normalized finite-horizon perfect foresight consumption function:\hypertarget{MPCminDefn}{}
\begin{align*}
\bar{\cFunc}_{T-n}(\mNrm_{T-n}) & = (\overbrace{\mNrm_{T-n}-1}^{
\equiv\bNrm_{T-n}}+\hNrm_{T-n})\MPCmin_{T-n}
\end{align*}
where $\MPCmin_{t}$ is the marginal propensity to consume (MPC) --- answering the question `if the consumer had an extra unit of resources, how much more spending would occur?' (The overbar signifies that $\bar{\cFunc}$ will be an upper bound as we modify the problem to incorporate constraints and uncertainty; analogously, $\MPCmin$ is the MPC's lower bound).
The horizon-exponentiated term in the denominator of~\eqref{eq:WDef} is why, for $\underline{\MPC}$ to be strictly positive as $n=T-t$ goes to infinity, we must impose the Return Impatience Condition:
\begin{align}
\text{\RIC:~~} \RPFac & < 1, \phantom{\text{\RIC:~~}} \label{eq:RIC}
\end{align}
so that
\begin{align}
0 < \MPCmin & \equiv 1-\RPFac = \lim_{n \rightarrow \infty} \MPCmin_{T-n} \label{eq:MPCminDef}
.
\end{align}
The {\RIC} thus implies that the consumer cannot be so pathologically patient as to wish, in the limit as the horizon approaches infinity, to spend nothing today out of an increase in current wealth (the {\RIC} rules out the degenerate limiting solution $\bar{\cFunc}(\mNrm)=0$). We call a consumer who satisfies the {\RIC} `return impatient.'
\hypertarget{Unconstrained-Solution}{}\hypertarget{PF-Unconstrained-Solution}{}
\subsubsection{Nondegenerate PF Unconstrained Solution Requires FHWC}\label{subsec:PFUncon}
Given that the {\RIC}~holds, and (as before) defining limiting objects by the absence of a time subscript, the limiting upper bound consumption function will be
\begin{align}\label{eq:cFuncPFUnc}
\bar{\cFunc}(\mNrm) & = (\mNrm+\hNrm-1)\MPCmin,
\end{align}
and so in order to rule out the degenerate limiting solution $\bar{\cFunc}(\mNrm) = \infty$ we need $\hNrm$ to be finite; that is, we must impose the Finite Human Wealth Condition ({\FHWC}), eq. \eqref{eq:FHWC}.
\hypertarget{GPFacRawDefn}{}\hypertarget{GICRaw}{}\hypertarget{GICRaw}{}
\subsubsection{The Growth Impatience Condition ({GIC})}\label{subsubsec:GIC}
By analogy to the \RPFacDefn, we define a `growth patience factor' as
\begin{equation}\begin{gathered}\begin{aligned}
\text{{\GPFacRawDefn}:~~} && \GPFacRaw= {\APFac}/\PermGroFac, & \label{eq:GPFacRawDefn}
\end{aligned}\end{gathered}\end{equation}
which defines a `growth impatience condition':
\begin{verbatimwrite}{\EqDir/GICRaw}
\begin{equation}\begin{gathered}\begin{aligned}
\text{\GICRaw:~~} && \GPFacRaw < 1. \phantom{/\PermGroFac}& \phantom{\text{\GICRaw:~~}} \label{eq:GICRaw}
\end{aligned}\end{gathered}\end{equation}
\end{verbatimwrite}
\input{\LtxDir\EqDir/GICRaw}
\hypertarget{ValuePFAnalytical}{}
\hypertarget{Autarky-Value-PF}{}
\subsubsection{Perfect Foresight Finite Value of Autarky Condition (PFFVAC)}
Under `autarky,' capital markets do not exist; the consumer has no choice but to spend permanent noncapital income $\PermLvl$ in every period. Because $\uFunc(xy) = x^{1-\CRRA}\uFunc(y)$, the value the consumer would achieve is
% \begin{equation}
% \begin{split}
\begin{equation}\label{eq:ValuePFAnalyticalAutarky}\begin{gathered}\begin{aligned}
\vLvl_{t}^{\text{autarky}} & = \uFunc(\PermLvl_{t})+\DiscFac \uFunc(\PermLvl_{t}\PermGroFac)+\DiscFac^{2} \uFunc(\PermLvl_{t} \PermGroFac^{2})+\ldots
\\ & = \uFunc(\PermLvl_{t})\left(\frac{1-{(\DiscFac \PermGroFac^{1-\CRRA})}^{T-t+1}}{1-\DiscFac \PermGroFac^{1-\CRRA}}\right) \notag
\end{aligned}\end{gathered}\end{equation}
which (for $\PermGroFac>0$) asymptotes to a finite number as $n=T-t$ approaches $+\infty$ if any of these equivalent conditions holds:\hypertarget{PFFVAC}{}
\begin{equation}\begin{gathered}\begin{aligned}
\text{\PFFVAC:~~} \overbrace{\DiscFac \PermGroFac^{1-\CRRA} }^{\equiv \DiscAlt} < & 1 \phantom{\text{\PFFVAC:~~}}
\\ \DiscFac \Rfree \PermGroFac^{-\CRRA} < & \Rfree/\PermGroFac \equiv \RNrm
\\ \RPFac < & \RNrm^{1-1/\CRRA},
\end{aligned}\end{gathered}\label{eq:PFFVAC}\end{equation}
where we call $\DiscAlt$\footnote{This is another kind of discount factor, so we use the Hebrew `bet' which is a cognate of the Greek `beta'.} the `Perfect Foresight Value Of Autarky Factor' ({\PFVAFacDefn}), and the variants of~\eqref{eq:PFFVAC} constitute alternative formulations of the \hyperlink{PFFVAC}{Perfect Foresight Finite Value of Autarky Condition} (\hyperlink{PFFVAC}{`PF-FVAC')}; they guarantee that a perfect-foresight consumer who always spends all permanent income has `finite autarky value.'\footnote{This is related to the key impatience condition in~\cite{asHomogeneous}.} % chktex 13
If the {\FHWC} is satisfied, the {\PFFVAC} implies that the {\RIC} is satisfied.\footnote{Divide both sides of the second inequality in~\eqref{eq:PFFVAC} by $\Rfree$:
\begin{align}
\APFac/\Rfree & < {(\PermGroFac/\Rfree)}^{1-1/\CRRA} \label{eq:FHWCandPFFVACimplyRIC}
\end{align}
and {\FHWC} $\Rightarrow$ the RHS is $< 1$ because $(\PermGroFac/\Rfree) < 1$ (and the RHS is raised to a positive power (because $\CRRA>1$)).} Likewise, if the {\FHWC} and the {\GICRaw} are both satisfied, {\PFFVAC} follows:
\begin{equation}\label{eq:GICandFHWCimplyPFFVAC}
\begin{split}
\APFac & < \PermGroFac < \Rfree
\\ \RPFac & < \PermGroFac/\Rfree < {(\PermGroFac/\Rfree)}^{1-1/\CRRA} < 1
\end{split}
\end{equation}
(the last line holds because {\FHWC} $\Rightarrow 0 \leq (\PermGroFac/\Rfree) < 1$ and $\CRRA > 1 \Rightarrow 0 < 1-1/\CRRA < 1$).
The first panel of Table~\ref{table:Required} summarizes: The PF-Unconstrained model has a nondegenerate limiting solution if we impose the {\RIC} and {\FHWC} (these conditions are necessary as well as sufficient). Together the {\PFFVAC} and the {\FHWC} imply the {\RIC}. If we impose the {\GICRaw} and the {\FHWC}, both the {\PFFVAC} and the {\RIC} follow, so {\GICRaw}+{\FHWC} are also sufficient. But there are circumstances under which the {\RIC} and {\FHWC} can hold while the {\PFFVAC} fails (`\cncl{\PFFVAC}'). For example, if $\PermGroFac=0$, the problem is a standard `cake-eating' problem with a nondegenerate solution under the {\RIC} (when the consumer has access to capital markets).% chktex 10
The easiest way to grasp the relations among these conditions is by studying Figure~\ref{fig:RelatePFGICFHWCRICPFFVAC}. Each node represents a quantity defined above. The arrow associated with each inequality imposes that condition. For example, one way we wrote the {\PFFVAC} in equation~\eqref{eq:PFFVAC} is $\APFac < \Rfree^{1/\CRRA} \PermGroFac^{1-1/\CRRA}$, so imposition of the {\PFFVAC} is captured by the diagonal arrow connecting $\APFac$ and $\Rfree^{1/\CRRA}\PermGroFac^{1-1/\CRRA}$. Traversing the boundary of the diagram clockwise starting at $\APFac$ involves imposing first the {\GICRaw} then the {\FHWC}, and the consequent arrival at the bottom right node tells us that these two conditions jointly imply the {\PFFVAC}. Reversal of a condition reverses the arrow's direction; so, for example, the bottom-most arrow going to $\Rfree^{1/\CRRA}\PermGroFac^{1-1/\CRRA}$ imposes {\cncl{\FHWC}}; but we can cancel the cancellation and reverse the arrow. This would allow us to traverse the diagram clockwise from $\APFac$ through $\PermGroFac$ to $\Rfree^{1/\CRRA}\PermGroFac^{1-1/\CRRA}$ to $\Rfree$, revealing that imposition of {\GICRaw} and {\FHWC} (and, redundantly, {\FHWC} again) let us conclude that the {\RIC} holds because the starting point is $\APFac$ and the endpoint is $\Rfree$. (Consult Appendix~\ref{sec:ApndxConditionDiagrams} for an exposition of diagrams of this type, which are a simple application of Category Theory~(\cite{riehl2017category})).
% \figName allows generic definition of hypertargets based on title of figure
\providecommand{\figName}{RelatePFGICFHWCRICPFFVAC}
\providecommand{\figFile}{\figName} % and on filename
\hypertarget{\figName}{}
\input{\FigDir/\figName} % Read in the tex to generate the figure
\hypertarget{PF-Constrained-Solution}{}
\hypertarget{Constrained-Solution}{}
\subsubsection{PF Constrained Solution Exists Under RIC or~\texorpdfstring{\{\cncl{RIC},~GIC\}}{RIC-Fails,~GIC}}\label{subsec:PFCon}
We next sketch the perfect foresight constrained solution because it defines a benchmark (and limit) for the unconstrained problem with uncertainty (our ultimate interest).
If a liquidity constraint requiring $\bNrm \geq 0$ is ever to be relevant, it must be relevant at the lowest possible level of market resources, $\mNrm_{t}=1$, defined by the lower bound, $\bNrm_{t}=0$ (if it were relevant at any higher level of $\mNrm$, it would certainly be relevant here, because $\uFunc^{\prime}>0$). The constraint is `relevant' if it prevents the choice that would otherwise be optimal; at $\mNrm_{t}=1$ it is relevant if the marginal utility from spending all of today's resources $c_{t}=m_{t}=1$, exceeds the marginal utility from doing the same thing next period, $\cNrm_{t+1}=1$; that is, if such choices would violate the Euler equation~\eqref{eq:scaledeuler}:
\begin{align}
1^{-\CRRA} & > \Rfree \DiscFac \PermGroFac^{-\CRRA}1^{-\CRRA}, \label{eq:LiqConstrBinds}
\end{align}
which is just a restatement of the {\GICRaw}.
We now examine implications of possible configurations of the conditions. (Tables~\ref{table:Comparison} and~\ref{table:Required} (and the table in appendix~\ref{sec:ApndxLiqConstr}) codify.)
\textit{\cncl{\GICRaw} and {\RIC}.} If the {\GICRaw} fails but the {\RIC}~\eqref{eq:RIC} holds, Appendix~\ref{sec:ApndxLiqConstr} shows that, for some $0 < \mNrm_{\#} < 1$, an unconstrained consumer behaving according to the perfect foresight solution~\eqref{eq:cFuncPFUnc} would choose $\cNrm < \mNrm$ for all $\mNrm > \mNrm_{\#}$. In this case the solution to the constrained consumer's problem is simple: For any $\mNrm \geq \mNrm_{\#}$ the constraint does not bind (and will never bind in the future); for such $\mNrm$ the constrained consumption function is identical to the unconstrained one. If the consumer were somehow\footnote{``Somehow'' because $\mNrm<1$ could only be obtained by entering the period with $\bNrm < 0$ which the constraint forbids.} to arrive at an $\mNrm < \mNrm_{\#} < 1$ the constraint would bind and the consumer would consume $\cNrm=\mNrm$. Using $\cnstr{\bullet}$ for the version of a function $\bullet$ in the presence of constraints (and recalling that $\bar{\cFunc}(\mNrm)$ is the unconstrained perfect foresight solution):
\begin{equation*}
\cnstr{\cFunc}(\mNrm)=
\begin{cases}
\mNrm & \text{if $\mNrm < \mNrm_{\#}$} \\
\bar{\cFunc}(\mNrm) & \text{if $\mNrm \geq \mNrm_{\#}$.}
\end{cases}
\end{equation*}
\textit{{\GICRaw} and {\RIC}.} When the {\RIC} and {\GICRaw} both hold, Appendix~\ref{sec:ApndxLiqConstr} shows that the limiting constrained consumption function is piecewise linear, with $\cnstr{\cFunc}(\mNrm)=\mNrm$ up to a first `kink point' at $\mNrm_{\#}^{0}>1$, and with discrete declines in the MPC at a set of kink points $\{\mNrm_{\#}^{1},\mNrm_{\#}^{2},\ldots\}$. As $\mNrm \uparrow \infty$ the constrained consumption function $\cnstr{\cFunc}(\mNrm)$ becomes arbitrarily close to the unconstrained $\bar{\cFunc}(\mNrm)$, and the marginal propensity to consume function $\cnstr{\MPCFunc}(\mNrm) \equiv \cnstr{\cFunc}^{\prime}(\mNrm)$ limits to $\MPCmin$.\footnote{See~\cite{chkLiqConstr} for details.} Similarly, the value function $\cnstr{\vFunc}(\mNrm)$ is nondegenerate and limits into the value function of the unconstrained consumer.
This logic holds even when the finite human wealth condition fails (\cncl{\FHWC}), because the constraint prevents the (limiting) consumer\footnote{That is, one obeying $\cFunc(\mNrm) = \lim_{n \uparrow \infty} \cFunc_{T-n}(\mNrm)$.} from borrowing against unbounded human wealth to finance unbounded current consumption. Under these circumstances, the consumer who starts with any $\bNrm_{t} > 0$ will, over time, run those resources down so that after some finite number of periods $\tau$ the consumer will reach $\bNrm_{t+\tau} = 0$, and thereafter will set $\cLvl = \PermLvl$ for eternity (which the {\PFFVAC} says yields finite value). Using the same steps as for equation~\eqref{eq:ValuePFAnalyticalAutarky}, value of the interim program is also finite: \hypertarget{PFFVAC}{} \hypertarget{PFVAFacDefn}{}
\begin{align*}
\vLvl_{t+\tau}
& = \PermGroFac^{\tau(1-\CRRA)} \uFunc(\PermLvl_{t})\left(\frac{1-{(\DiscFac \PermGroFac^{1-\CRRA})}^{T-(t+\tau)+1}}{1-\DiscFac \PermGroFac^{1-\CRRA}}\right).
\end{align*}
% Note that the last version of the \PFFVAC~in~\eqref{eq:PFFVAC} implies the \GICRaw~$\GPFacRaw < 1$ whenever \cncl{\FHWC} ($\Rfree < \PermGroFac$) holds.
So, even under \cncl{\FHWC}, the limiting consumer's value for any finite $\mNrm$ will be the sum of two finite numbers: One due to the unconstrained choice made over the finite horizon leading up to $\bNrm_{t+\tau} = 0$, and one reflecting the value of consuming $\PermLvl_{t+\tau}$ thereafter.
\hypertarget{RICandFHWCFail}{} \textit{{\GICRaw} and {\cncl{\RIC}}}. The most peculiar possibility occurs when the \RIC~fails. Under these circumstances the \FHWC~must also fail (Appendix~\ref{sec:ApndxLiqConstr}), and the constrained consumption function is nondegenerate. (See appendix Figure~\ref{fig:PFGICHoldsFHWCFailsRICFails} for a numerical example). While $\lim_{m \uparrow \infty} \cnstr{\MPCFunc}(\mNrm) = 0$, nevertheless the limiting constrained consumption function $\cnstr{\cFunc}(\mNrm)$ is finite, strictly positive, and strictly increasing in $\mNrm$. This result interestingly reconciles the conflicting intuitions from the unconstrained case, where \cncl{\RIC} would suggest a degenerate limit of $\cnstr{\cFunc}(\mNrm)=0$ while \cncl{\FHWC} would suggest a degenerate limit of $\cnstr{\cFunc}(\mNrm)=\infty$.
We now examine the case with uncertainty but without constraints, which turns out to be a close parallel to the model with constraints but without uncertainty.
\hypertarget{Uncertainty-Modified-Conditions}{}
\subsection{Uncertainty-Modified Conditions}\label{subsec:UncertaintyModifiedConditions}
\hypertarget{GICMod}{}
\subsubsection{The Growth Impatience Condition (GIC-Mod))}
When noncapital income uncertainty is introduced, the expectation of beginning-of-period bank balances $\bNrm_{t+1}$ can be rewritten as:
\begin{align*}
\Ex_{t}[\bNrm_{t+1}] & = \aNrm_{t}\Ex_{t}[(\Rfree/\PermGroFac_{t+1})] = \aNrm_{t}(\Rfree/\PermGroFac)\Ex_{t}[\PermShk_{t+1}^{-1}] %\label{eq:EbNrm}
\end{align*}
where Jensen's inequality guarantees that the expectation of the inverse of the permanent shock is greater than one. Now define\hypertarget{InvEPermShkInvDefn}{}\hypertarget{InvEPermShkEInv}{}
\begin{align}
\InvEPermShkInv & \equiv {(\EPermShkInv)}^{-1} \label{eq:InvEPermShkInv}
\end{align}
which satisfies $\InvEPermShkInv < 1$ (thanks again to Mr.\ Jensen), so it is convenient to define\hypertarget{PermGroFacAdj}{}
\begin{verbatimwrite}{\EqDir/PermGroFacAdj}
\begin{align}
\PermGroFacAdj & \equiv \PermGroFac \InvEPermShkInv < \PermGroFac \notag %\label{eq:PermGroFacAdj}
\end{align}
\end{verbatimwrite}
\input{\LtxDir\EqDir/PermGroFacAdj}
because this allows us to write uncertainty-modified versions of earlier equations and conditions in a manner exactly parallel to those for the perfect foresight case; for example, we define a modified Growth Patience Factor:
\hypertarget{PermGroAdjDefn}{}\hypertarget{GPFacModDefn}{}
\begin{verbatimwrite}{\EqDir/GPFacNrm}
\begin{align}
\text{{\GPFacModDefn}:~~} \GPFacNrm & = \APFac/\PermGroFacAdj = \Ex[\APFac/(\PermGroFac\PermShk)] \phantom{\text{{\GPFacModDefn}:~~}} \label{eq:GPFacModDefn}
\end{align}
\end{verbatimwrite}
\input{\LtxDir\EqDir/GPFacNrm}
\begin{comment}
and the proof of Theorem~\ref{thm:MSSBalExists} below yields the conclusion that
\begin{align*}
\lim_{\mNrm_{t} \rightarrow \infty} \Ex_{t}[\mNrm_{t+1}/\mNrm_{t}] & = \GPFacNrm,
\end{align*}
which implies that if we want to guarantee that we can find an $\mNrm$ large enough that $\Ex_{t}[\mNrm_{t+1}] < \mNrm_{t}$ we must impose a modified version of the Growth Impatience Condition~\eqref{eq:GICRaw}; we call the `Uncertainty-Modified Growth Impatience Condition' (\GICMod) the requirement that the Modified Growth Patience Factor~\eqref{eq:GPFacModDefn} must be less than 1:%\footnote{Under our assumption that $\CRRA>1$, equation~\eqref{eq:GICMod} is a bit easier to satisfy than the similar condition imposed by Deaton~\citeyearpar{deatonLiqConstr}: $\left(\Ex[\PermShk^{-\CRRA}]\right)^{1/\CRRA} \GPFacRaw < 1$ to guarantee that his problem defined a contraction mapping.}
\end{comment}
with a corresponding modified version of the Growth Impatience Condition:
\begin{verbatimwrite}{\EqDir/GICMod}
\begin{align}
\text{{\GICMod}:~~} \GPFacNrm & < 1, \phantom{\text{{\GICMod}:~~}}\label{eq:GICMod}
\end{align}\end{verbatimwrite}
\input{\LtxDir\EqDir/GICMod}
that is stronger than the perfect foresight version~\eqref{eq:GICRaw} because $\PermGroFacAdj < \PermGroFac$.
\begin{comment}
\begin{align}
\PermGroFacAdj & < \PermGroFac \label{eq:PermGroFacAdjLTPermGroFac}.
\end{align}
\end{comment}
\hypertarget{Calibration}{}
\input{\TableDir/Parameters}
\hypertarget{Autarky-Value}{}
\subsubsection{The Finite Value of Autarky Condition (FVAC)}
Analogously to~\eqref{eq:ValuePFAnalyticalAutarky}, value for a consumer who spent exactly their permanent income every period would reflect the product of the expectation of the (independent) future shocks to permanent income:\hypertarget{uInvEuPermShkDefn}{}
\begin{align*}
\vLvl_{t} & = \Ex_{t}\left[\uFunc(\PermLvl_{t}) + \DiscFac \uFunc(\PermLvl_{t}\PermGroFac_{t+1}) + \cdots + \DiscFac^{T-t}\uFunc(\PermLvl_{t}\PermGroFac_{t+1}\ldots\PermGroFac_{T})\right] \\
% & = \uFunc(\PermLvl_{t})\left(1+ \DiscFac \Ex_{t}[\PermGroFac_{t+1}^{1-\CRRA}] + \ldots + \DiscFac^{T-t}\Ex_{t}[\PermGroFac_{t+1}^{1-\CRRA}]\ldots\Ex_{t}[\PermGroFac_{T}^{1-\CRRA}]\right) \\
& = \uFunc(\PermLvl_{t})\left(\frac{1-{(\DiscFac \PermGroFac^{1-\CRRA}\Ex[\PermShk^{1-\CRRA}])}^{T-t+1}}{1-\DiscFac \PermGroFac^{1-\CRRA} \Ex[\PermShk^{1-\CRRA}]}\right),
\end{align*}
suggesting the definition of a utility-compensated equivalent of the permanent shock,\hypertarget{EuPermShk}{}\hypertarget{uInvEuPermShk}{}
\begin{align}
\uInvEuPermShk & = {(\Ex[\PermShk^{1-\CRRA}])}^{1/(1-\CRRA)} \label{eq:uInvEuPermShk},
\end{align}
which will satisfy $\uInvEuPermShk < 1$ for $\CRRA>1$ and nondegenerate $\PermShk$.% (and $\uInvEuPermShk < \InvEPermShkInv$ for the reasonable (though not required) case of $\CRRA > 2$);
\hypertarget{DiscAltuAdjDefn}{} Defining
\begin{equation}
\label{eq:PermGroFacAdj}
\PermGroFacuAdj = \PermGroFac \uInvEuPermShk,
\end{equation}
$\vLvl_{t}$ will be positive and finite as $T$ approaches $\infty$ if\hypertarget{FVAC}{}\hypertarget{VAFacDefn}{}
\begin{verbatimwrite}{\EqDir/FVAC}
\begin{equation} \iflabelexists{eq:FVAC}{}{\label{eq:FVAC}} % Don't define it if already defined
\begin{split}
\text{{\FVAC}:~~} 0 < \overbrace{\DiscFac \PermGroFacuAdj^{1-\CRRA} }^{\equiv \DiscAltuAdj~=~\text{\VAFacDefn}} & < 1 \phantom{\text{{\FVAC}:~~}}
\\ 0 < \DiscFac & < \PermGroFacuAdj^{\CRRA-1} ,
\end{split}
\end{equation}
\end{verbatimwrite}
\input{\LtxDir\EqDir/FVAC}{\noindent}and \eqref{eq:FVAC} is the `finite value of autarky condition' because it guarantees value is finite for a consumer who always consumes (now stochastic) permanent income ($\DiscAltuAdj$ is the `Value of Autarky Factor' (`{\VAFacDefn}')).\footnote{In a stationary environment --- that is, with $\PermGroFacuAdj=1$ --- this corresponds to an impatience condition imposed by~\cite{mstIncFluct}; but their remaining conditions do not correspond to those here, because their problem differs and their method of proof differs.} For nondegenerate $\PermShk$, this condition is stronger (harder to satisfy -- requiring lower $\DiscFac$) -- than the perfect foresight version~\eqref{eq:PFFVAC} because $\PermGroFacuAdj < \PermGroFac$.\footnote{Rewrite~\eqref{eq:FVAC} as
\together{
\begin{align*}
\DiscFac \Rfree & < \Rfree \PermGroFacuAdj^{\CRRA-1}
\\ {(\DiscFac \Rfree)}^{1/\CRRA} & < \Rfree^{1/\CRRA} \PermGroFac^{1-1/\CRRA} \uInvEuPermShk^{1-1/\CRRA}
\\ \GPFacRaw & < {(\Rfree/\PermGroFac)}^{1/\CRRA} \uInvEuPermShk^{1-1/\CRRA}
\end{align*}
}
where the last equation is the same as the {\PFFVAC} condition except that the
RHS is multiplied by $\uInvEuPermShk^{1-1/\CRRA}$ which is strictly less than 1.}
\hypertarget{Baseline-Numerical-Solution}{}
\subsection{The Baseline Numerical Solution}
Figure~\ref{fig:cFuncsConverge}, familiar from the literature, depicts the successive consumption rules that apply in the last period of life $(\cFunc_{T}(\mNrm))$, the second-to-last period, and earlier periods under baseline parameter values listed in Table~\ref{table:Calibration}. (The 45 degree line is $\cFunc_{T}(\mNrm) = m$ because in the last period of life it is optimal to spend all remaining resources.)
In the figure, the consumption rules appear to converge to a nondegenerate $\usual{\cFunc}(\mNrm)$. Our next purpose is to show that this appearance is not deceptive. \hypertarget{Concave-Consumption-Function-Characteristics}{}
\hypertarget{Symbols}{}
\input{\TableDir/Calibration}
\renewcommand{\figName}{Convergence-of-the-Consumption-Rules}
\renewcommand{\figFile}{cFuncsConverge}
\hypertarget{\figFile}{}
\hypertarget{\figName}{}
\input{\FigDir/cFuncsConverge} % Read in the tex to generate the figure
\subsection{Concave Consumption Function Characteristics}\label{sec:cExists}
A precondition for the main theorem is that the maximization problem defines a sequence of continuously differentiable strictly increasing strictly concave\footnote{With one obvious exception: $\usual{\cFunc}_{T}(\mNrm)$ is linear (and so only weakly concave).} functions $\{\cFunc_{T},\cFunc_{T-1},\ldots\}$. The straightforward but tedious proof is relegated to Appendix~\ref{sec:ApndxConcaveCFunc}. (\cite{ckConcavity} proved concavity but not continuous differentiability, which our theorem will use). For present purposes, the important point is that the income process induces what~\cite{aiyagari:ge} dubbed a `natural borrowing constraint': $\usual{\cFunc}_{t}(\mNrm) < m$ for all periods $t < T$ because a consumer who spent all available resources would arrive in period $t+1$ with balances $b_{t+1}$ of zero, and then might earn zero income over the remaining horizon, risking the possibility of a requirement to spend zero, yielding negative infinite utility. To avoid this calamity, the consumer never spends everything.~~\cite{zeldesStochastic} seems to have been the first to argue, based on his numerical results, that the natural borrowing constraint was a quantitatively plausible alternative to `artificial' or `ad hoc' borrowing constraints.\footnote{The same (numerical) point applies for infinite horizon models (calibrated to actual empirical data on household income dynamics); cf.~\cite{carrollBrookings}.}
Strict concavity and continuous differentiability of the consumption function are key elements in many of the arguments below, but are not characteristics of models with `artificial' borrowing constraints (though the analytical convenience of these features is considerable -- see below).
\hypertarget{Bounds-for-the-Consumption-Functions}{}
\subsection{Bounds for the Consumption Functions}\label{subsec:cFuncBounds}
The consumption functions depicted in Figure~\ref{fig:cFuncsConverge} appear to have limiting slopes as $\mNrm \downarrow 0$ and as $\mNrm \uparrow \infty$. This section confirms that impression and derives those slopes, which will be needed in the contraction mapping proof.\footnote{\cite{benhabibWealth} show that the consumption function becomes linear as wealth approaches infinity in a model with capital income risk and liquidity constraints;~\cite{maTodaRich} show that these results generalize to the limits derived here if capital income is added to the model.}
Assume (as justified above) that a continuously differentiable concave consumption function exists in period $t+1,$ with an origin at $\usual{\cFunc}_{t+1}(0)=0$, a minimal MPC $\MPCmaxmin_{t+1}>0$, and maximal MPC $\MPCmax_{t+1} \leq 1$. (If $t+1 = T$ these will be $\MPCmaxmin_{T}=\MPCmax_{T}=1$; for earlier periods they will exist by recursion.)
Under our imposed assumption that human wealth is finite, the MPC bound as wealth approaches infinity is easy to understand: As the \textit{proportion} of consumption that will be financed out of human wealth approaches zero, the proportional difference between the solution to the model with uncertainty and the perfect foresight model shrinks to zero. \hypertarget{MPCnvrsLower}{} In the course of proving this, Appendix~\ref{sec:MPCLimits} provides a recursive expression (used below) for the (inverse of the) limiting MPC as wealth approaches $\infty$:\hypertarget{WRICCondDefn}{}\hypertarget{MPCmax}{}\hypertarget{MPCnvrsUpperDefn}{}\hypertarget{WRIC}{}\hypertarget{WRPFacDefn}{}
\begin{align}
\MPCmin_{t}^{-1} & = 1+\MPSmax \MPCmin_{t+1}^{-1} \label{eq:MPCminInv}.
\end{align}
\subsubsection{The Weak RIC Condition ({WRIC})}{}\label{sec:WRIC}
Appendix equation~\eqref{eq:MPCmaxInvApndx} reflects the derivation of a parallel expression for the limiting maximal MPC as $\mNrm_{t} \downarrow 0$:
\begin{align}
\MPCmax_{t}^{-1} & = 1+\MPSmin \MPCmax_{t+1}^{-1} \label{eq:MPCmaxInv}
\end{align}
where $\left\{\MPCmax_{T-n}^{-1}\right\} _{n=0}^{\infty}$ is a decreasing convergent sequence if the `weak return patience factor' $\pZero^{1/\CRRA}\RPFac$ satisfies:
\begin{align}
\text{{\WRIC}:~~} 1 \geq &~\pZero^{1/\CRRA} \RPFac, \phantom{\text{{\WRIC}:~~}} \label{eq:WRIC}
\end{align}
a condition we dub the `Weak Return Impatience Condition' because with $\pZero < 1$ it will hold more easily (for a larger set of parameter values) than the \RIC~($\RPFac < 1$). The essence of the argument is that as wealth approaches zero, the overriding consideration that limits consumption is the (recursive) fear of the zero-income events. (That is why the probability of the zero income event $\pZero$ appears in the expression.)
\hypertarget{cBounds}{}
We are now in position to observe that the optimal consumption function must satisfy
\begin{align}
\MPCminmin_{t} \mNrm_{t} ~ \leq & ~ \usual{\cFunc}_{t}(\mNrm_{t}) \leq ~ \MPCmax_{t} \mNrm_{t} \label{eq:cBounds}
\end{align}
because consumption starts at zero and is continuously differentiable, is strictly concave,\footnote{\cite{ckConcavity}} and always exhibits a slope between $\MPCminmin_{t}$ and $\MPCmax_{t}$ (formal proof: Appendix~\ref{sec:Tcomplete}).
\hypertarget{Conditions-Under-Which-the-Problem-Defines-a-Contraction-Mapping}{}
\subsection{The Problem Is a Contraction Mapping Under {WRIC} and {FVAC}}\label{subsec:contraction}
As mentioned above, standard theorems in the contraction mapping literature before and after Stokey et.\ al.~\citeyearpar{slpMethods} require utility or marginal utility to be bounded over the space of possible values of $\mNrm$; that requirement does not apply here because the possibility (however unlikely) of an unbroken string of zero-income events through the end of the horizon means that utility (and marginal utility) are unbounded as $\mNrm \downarrow 0$. Although a recent literature examines the existence and uniqueness of solutions to Bellman equations in the presence of `unbounded returns' (see, e.g., \cite{mnUnique}), it appears that the techniques in that literature cannot be used to solve the problem here because the required conditions are violated by a problem that incorporates permanent shocks.\footnote{See~\cite{yaoNote} for a detailed discussion of the reasons the existing literature up through~\cite{mnUnique} cannot handle the problem described here.}
Fortunately, Boyd~\citeyearpar{jboydWeighted} provided a weighted contraction mapping theorem that~\cite{asHomogeneous} showed could be used to address the homogeneous case (of which CRRA is an example) in a deterministic framework; later,~\cite{duranDiscounting} showed how to extend the~\cite{jboydWeighted} approach to the stochastic case.
\begin{definition}
Consider any function $\bullet\in \mathcal{C}(\mathscr{A},\mathscr{B})$ where $\mathcal{C}(\mathscr{A},\mathscr{B})$ is the space of continuous functions from $\mathscr{A}$ to $%
\mathscr{B}$. Suppose $\boundFunc \in \mathcal{C}(\mathscr{A},\mathscr{B})$ with $%
\mathscr{B}\subseteq\mathbb{R}$ and $\boundFunc >0$. Then $\bullet$ is $\boundFunc$-bounded if the $\boundFunc$-norm of $\bullet$,
\begin{equation}
\Vert \bullet\Vert _{\boundFunc }=\sup_{\mNrm}\left[ \frac{|\bullet(\mNrm)|}{\boundFunc (\mNrm)}\right] ,
\label{eq:phinorm}
\end{equation}%
is finite.
\end{definition}
For $\mathcal{C}_{\boundFunc}\left( \mathscr{A},\mathscr{B}\right) $ defined as the set of functions in $\mathcal{C}(\mathscr{A},\mathscr{B})$ that are $\boundFunc$-bounded; $\wFunc$, $\xFunc$, $\yFunc$, and $\zFunc$ as examples of $\boundFunc$-bounded functions; and using {$\mathbf{0}(\mNrm)=0$} to indicate the function that returns zero for any argument, Boyd~\citeyearpar{jboydWeighted} proves the following.
\textbf{Boyd's Weighted Contraction Mapping Theorem.} \textit{Let $\BoydT:\mathcal{C}_{\boundFunc }\left( \mathscr{A},\mathscr{B}\right)
\rightarrow \mathcal{C}\left( \mathscr{A},\mathscr{B}\right) $ such
that}\footnote{We will usually denote the function that results from the mapping as, e.g., $\{\BoydT\wFunc\}$.}\textsuperscript{,}\footnote{To non-theorists, this notation may be slightly confusing; the inequality relations in (1) and (3) are taken to mean `for any specific element $\bullet$ in the domain of the functions in question' so that, e.g., $\xFunc \leq \yFunc$ is short for $\xFunc(\bullet) \leq \yFunc(\bullet)~\forall~\bullet\in \mathscr{A}$. In this notation, $\zeta \Shrinker \boundFunc$ in (3) is a \textit{function} which can be applied to any argument $\bullet$ (because $\boundFunc$ is a function).} \nopagebreak
\begin{align*}
\mbox{(1)} &\BoydT%
\mbox{ \textit{is non-decreasing, i.e.\ ${\xFunc} \leq {\yFunc}\Rightarrow
\{\BoydT{\xFunc}\} \leq \{\BoydT{\yFunc}\}$}} \nonumber \\
\mbox{(2)} & \{\BoydT\mathbf{0}\}\in ~ \mathcal{C}_{\boundFunc }\left(\mathscr{A},\mathscr{B}\right) \notag \\
\mbox{(3)}
& \mbox{\textit{There exists some real $0 < \Shrinker < 1$ such that}} \\
& \{\BoydT({\wFunc} +\zeta\boundFunc )\} \leq \{\BoydT{\wFunc}\} +\zeta\Shrinker \boundFunc
\mbox{ \textit{~~holds for all real $\zeta > 0$ } } .
\end{align*}
\textit{Then $\BoydT$ defines a contraction with a unique fixed point.}
For our problem, take $\mathscr{A}$ as $\mathbb{R}_{>0}$ and $\mathscr{B}$
as $\mathbb{R}$, and define
\begin{align*}
\{\EEndMap \zFunc\}(a_{t}) & = \Ex_{t}\left[\PermGroFac^{1-\CRRA}_{t+1} \zFunc(a_{t} \RNrm_{t+1} + \TranShkAll_{t+1})\right].
\end{align*}
Using this, we introduce the mapping \textit{$\TMap:\mathcal{C}_{\boundFunc }\left( \mathscr{A},\mathscr{B}\right) \rightarrow \mathcal{C}\left( \mathscr{A},\mathscr{B}\right) $}.\footnote{Note that the existence of the maximum is assured by the continuity of $\{\EEndMap \zFunc\}(a_{t})$ (it is continuous because it is the sum of continuous $\boundFunc$-bounded functions $\zFunc$) and the compactness of $[\MPCminmin \mNrm_{t}, \MPCmax \mNrm_{t}]$.}\hypertarget{Contraction-Conditions}{}
Our operator $\TMap$ satisfies the conditions that Boyd requires of his operator $\BoydT$ if we impose two restrictions on parameter values.\footnote{See the appendix.} The first is the \WRIC~necessary for convergence of the maximal MPC, equation~\eqref{eq:WRIC} above. More serious is the Finite Value of Autarky Condition, equation~\eqref{eq:FVAC}. (The interpretation of these restrictions is elaborated in Section~\ref{sec:discussConvergence} below.) Imposing these restrictions, we are now in position to state the central theorem of the paper.
\hypertarget{MainTheorem}{}
\setcounter{theorem}{0}
\begin{theorem}\label{thm:contmap}
$\TMap$ is a contraction mapping if the weak return impatience condition \eqref{eq:WRIC} and the finite value of autarky condition \eqref{eq:FVAC} hold.
\end{theorem}
Intuitively, Boyd's theorem shows that if you can find a $\boundFunc$ that is everywhere finite but goes to infinity `as fast or faster' than the function you are normalizing with $\boundFunc$, the normalized problem defines a contraction mapping. The intuition for the {\FVAC} condition is that, with an infinite horizon, with any strictly positive initial amount of bank balances $\bNrm_{0}$, in the limit your value can always be made greater than you would get by consuming exactly the sustainable amount (say, by consuming $(\rfree/\Rfree)\bNrm_{0}-\epsilon$ for some arbitrarily small $\epsilon>0$).
We use the bounding function
\begin{verbatimwrite}{\EqDir/boundFunc}
\begin{equation}\begin{gathered}\begin{aligned}
\iflabelexists{eq:boundFunc}{}{\label{eq:boundFunc}} % Don't define it if already defined
\boundFunc(\mNrm) & = \eta + \mNrm^{1-\CRRA},
\end{aligned}\end{gathered}\end{equation}
\end{verbatimwrite}
\input{\LtxDir\EqDir/boundFunc}
for some real scalar $\eta > 0$ whose value is determined in the course of the proof.\footnote{Thanks to John Boyd for suggesting this bounding function.} Under this definition of $\boundFunc$, $\{\TMap\mathbf{0}\}(\mNrm_{t})= \uFunc(\MPCmax \mNrm_{t})$ is clearly $\boundFunc$-bounded.
The cumbersome details of the proof are relegated to Appendix~\ref{sec:Tcomplete}. Given that the value function converges, Appendix~\ref{subsec:cConverges} shows that the consumption functions converge.\footnote{MST's proof is for convergence of the consumption policy function directly, rather than of the value function, which is why their conditions are on $\uFunc^{\prime}$, which governs behavior.}
\hypertarget{The-Liquidity-Constrained-Solution-as-a-Limit}{}
\subsection{The Liquidity Constrained Solution as a Limit}\label{sec:deatonIsLimit}
A related problem commonly considered in the literature (e.g., by Deaton~\citeyearpar{deatonLiqConstr}), with a liquidity constraint and a positive minimum value of income, is the limit of the problem considered here as the probability $\pZero$ of the zero-income event approaches zero.
The `related' problem makes two changes to the problem defined above:
\begin{enumerate}
\item An `artificial' liquidity constraint is imposed: $\aNrm_{t}\geq 0$
\item The probability of zero-income events is zero: $\pZero=0$
\end{enumerate}
The essence of the argument is simple. Imposing the artificial constraint without changing $\pZero$ would not change behavior at all: The possibility of earning zero income over the remaining horizon already prevents the consumer from ending the period with zero assets. So, for precautionary reasons, the consumer will save something.
But the \textit{extent} to which the consumer feels the need to make this precautionary provision depends on the \textit{probability} that it will turn out to matter. As $\pZero \downarrow 0$, that probability becomes arbitrarily small, so the \textit{amount} of precautionary saving induced by the zero-income events approaches zero as $\pZero \downarrow 0$. But ``zero'' is the amount of precautionary saving that would be induced by a zero-probability event for the impatient liquidity constrained consumer.
Another way to understand this is just to think of the liquidity constraint reflecting a component of the utility function that is zero whenever the consumer ends the period with (strictly) positive assets, but negative infinity if the consumer ends the period with (weakly) negative assets.
\hypertarget{Factors-Defined-And-Compared}{}
\input{\TableDir/Comparison}
See Appendix~\ref{sec:LiqConstrAsLimit} for the formal proof justifying the foregoing intuitive discussion.\footnote{It seems likely that a similar argument would apply even in the context of a model like that of MST, perhaps with some weak restrictions on returns.}
The conditions required for convergence and nondegeneracy are thus strikingly similar between the liquidity constrained perfect foresight model and the model with uncertainty but no explicit constraints: The liquidity constrained perfect foresight model is just the limiting case of the model with uncertainty as the degree of all three kinds of uncertainty (zero-income events, other transitory shocks, and permanent shocks) approaches zero.
% \hypertarget{Restrained-Consumer}{}
% In the remainder of the paper, in order to avoid a confusion that is common in discussions of models of this type, we will refer to consumers who are solving a problem in which constraints exist, but are not necessarily binding at the moment under consideration, as `restrained' consumers.
\hypertarget{Relations-Between-Parametric-Restrictions}{}
\subsection{Relations Between Parametric Restrictions}\label{sec:discussConvergence}
The full relationship among conditions is represented in Figure~\ref{fig:Inequalities}. Though the diagram looks complex, it is merely a modified version of the earlier simple diagram (Figure~\ref{fig:RelatePFGICFHWCRICPFFVAC}) with further (mostly intermediate) inequalities inserted. (Arrows with a ``because'' now label relations that always hold under the model's assumptions.)\footnote{Again, readers unfamiliar with such diagrams should see Appendix~\ref{sec:ApndxConditionDiagrams} for a more detailed exposition.}
\renewcommand{\figName}{Inequalities}
\renewcommand{\figFile}{\figName}
\hypertarget{\figFile}{}
\input{\FigDir/\figName} % Read in the tex to generate the figure
% \subsubsection{The \WRIC}\label{subsubsec:WRICdiscuss}
The `weakness' of the additional condition sufficient for contraction beyond the {\FVAC}, the \WRIC, can be seen by asking `under what circumstances would the \FVAC~hold but the \WRIC~fail?' Algebraically, the requirement is
\begin{align}
\DiscFac \PermGroFac^{1-\CRRA}\uInvEuPermShk^{1-\CRRA} & < ~ 1 ~ < {(\pZero \DiscFac)}^{1/\CRRA}/\Rfree^{1-1/\CRRA}. \label{eq:WRICandFVAC}
\end{align}
If we require $\Rfree \geq 1$, the {\WRIC}~is redundant because now $\DiscFac <1<\Rfree^{\CRRA-1}$, so that (with $\CRRA > 1$ and $\DiscFac<1$) the \RIC~(and \WRIC) must hold. But neither theory nor evidence demand that $\Rfree \geq 1$. We can therefore approach the question of the \WRIC's relevance by asking just how low $\Rfree$ must be for the condition to be relevant. Suppose for illustration that $\CRRA=2$, $\uInvEuPermShk^{1-\CRRA}=1.01$, $\PermGroFac^{1-\CRRA}=1.01^{-1}$ and $\pZero = 0.10$. In that case~\eqref{eq:WRICandFVAC} reduces to
\begin{align*}
\DiscFac & < 1 < {(0.1 \DiscFac/\Rfree)}^{1/2}
\end{align*}
but since $\DiscFac < 1$ by assumption, the binding requirement is that
\begin{align*}
\Rfree & < \DiscFac/10 \notag
\end{align*}
so that for example if $\DiscFac=0.96$ we would need $\Rfree < 0.096$ (that is, a perpetual riskfree rate of return of worse than -90 percent a year) in order for the \WRIC~to bind.
Perhaps the best way of thinking about this is to note that the space of parameter values for which the \WRIC~is relevant shrinks out of existence as $\pZero \rightarrow 0$, which Section~\ref{sec:deatonIsLimit} showed was the precise limiting condition under which behavior becomes arbitrarily close to the liquidity constrained solution (in the absence of other risks). On the other hand, when $\pZero = 1$, the consumer has no noncapital income (so that the \FHWC~holds) and with $\pZero=1$ the \WRIC~is identical to the RIC;\@ but the \RIC~is the only condition required for a solution to exist for a perfect foresight consumer with no noncapital income. Thus the WRIC~forms a sort of `bridge' between the liquidity constrained and the unconstrained problems as $\pZero$ moves from 0 to 1.
\hypertarget{IntuitionRIC}{}
\subsubsection{When the {RIC}~Fails}\label{subsubsec:WhenTheRICFails}
In the perfect foresight problem (Section~\ref{subsec:PFUncon}), the \RIC~was necessary for existence of a nondegenerate solution. It is surprising, therefore, that in the presence of uncertainty, the much weaker {\WRIC} is sufficient for nondegeneracy (assuming that the {\FVAC} holds). We can directly derive the features the problem must exhibit (given the \FVAC) under \cncl{\RIC} (that is, $\Rfree < {(\Rfree \DiscFac)}^{1/\CRRA})$:
\begin{equation}\label{eq:RICimplies}
\begin{split}
\Rfree & < \overbrace{{(\Rfree \DiscFac)}^{1/\CRRA} ~ < ~ {(\Rfree {(\PermGroFac \uInvEuPermShk)}^{\CRRA-1})}^{1/\CRRA}}^{\text{implied by \FVAC}}
\\ \Rfree & < {(\Rfree/\PermGroFac)}^{1/\CRRA}\PermGroFac \uInvEuPermShk^{1-1/\CRRA}
% \\ \Rfree/\PermGroFac & < {(\Rfree/\PermGroFac)}^{1/\CRRA}\uInvEuPermShk^{1-1/\CRRA}
\\ \Rfree/\PermGroFac & < \uInvEuPermShk
\end{split}
\end{equation}
but since $\uInvEuPermShk < 1$ (cf.\ the argument below~\eqref{eq:uInvEuPermShk}), this requires $\Rfree/\PermGroFac < 1$; so, given the \FVAC, the \RIC~can fail only if human wealth is unbounded. As an illustration of the convenience of our diagrams, note that this algebraically complicated conclusion could be easily reached diagrammatically in figure~\ref{fig:Inequalities} by starting at the $\Rfree$ node and imposing $\cncl{\RIC}$, which reverses the {\RIC} arrow and lets us traverse the diagram along any clockwise path to the {\PFVAFacDefn} node at which point we realize that we \textit{cannot} impose the {\FHWC} because that would let us conclude $\Rfree > \Rfree$.
As in the perfect foresight constrained problem, unbounded limiting human wealth (\cncl{\FHWC}) here does not lead to a degenerate limiting consumption function (finite human wealth is not required for the convergence theorem). But, from equation~\eqref{eq:MPCminInv} and the discussion surrounding it, an implication of \cncl{\RIC} is that $\lim_{m \uparrow \infty} \usual{\cFunc}^{\prime}(\mNrm) = 0$. Thus, interestingly, in the special $\{\cncl{\RIC},~\cncl{\FHWC}\}$ case (unavailable in the perfect foresight model) the presence of uncertainty both permits unlimited human wealth (in the $n\uparrow\infty$ limit) and at the same time prevents unlimited human wealth from resulting in (limiting) infinite consumption (at any finite $\mNrm$). Intuitively, in the presence of uncertainty, pathological patience (which in the perfect foresight model results in a limiting consumption function of $\usual{\cFunc}(\mNrm)=0$) plus unbounded human wealth (which the perfect foresight model prohibits because it leads to a limiting consumption function $\usual{\cFunc}(\mNrm)=\infty$ for any finite $\mNrm$) combine to yield a unique finite limiting (as $n \uparrow \infty$) level of consumption and MPC for any finite value of $\mNrm$. Note the close parallel to the conclusion in the perfect foresight liquidity constrained model in the \{\GICRaw,~\cncl{\RIC}\} case. There, too, the tension between infinite human wealth and pathological patience was resolved with a nondegenerate consumption function whose limiting MPC was zero.\footnote{\cite{maTodaRich} derive conditions under which the limiting MPC is zero in an even more general case where there is also capital income risk.}
\hypertarget{When-the-RIC-Holds}{}
\subsubsection{When the {RIC} Holds}\label{subsubsec:WhenTheGICModFails}\label{subsubsec:WhenTheRICHolds}
\textbf{\FHWC}. If the {\RIC} and {\FHWC} both hold, a perfect foresight solution exists (see~\ref{subsec:PFUncon} above). As $\mNrm \uparrow \infty$ the limiting $\cFunc$ and $\vFunc$ functions become arbitrarily close to those in the perfect foresight model, because human wealth pays for a vanishingly small portion of spending. This will be the main case analyzed in detail below.
\noindent \textbf{\cncl{\FHWC}}. The more exotic case is where {\FHWC} fails; in the perfect foresight model, \{{\RIC},\cncl{\FHWC}\} is the degenerate case with limiting $\bar{\cFunc}(\mNrm)=\infty$. Here, the {\FVAC} implies that the {\PFFVAC} holds (traverse Figure~\ref{fig:Inequalities} clockwise from $\APFac$ by imposing {\FVAC} and continue to the {\PFVAFacDefn} node): Reversing the arrow connecting the $\Rfree$ and {\PFVAFacDefn} nodes implies that under $\cncl{\FHWC}$:
\begin{align*}
& \overbrace{\APFac < {(\Rfree/\PermGroFac)}^{1/\CRRA}\PermGroFac}^{\PFFVAC}
\\ & \APFac < \PermGroFac
\end{align*}
where the transition from the first to the second lines is justified because $\cncl{\FHWC} \Rightarrow {(\Rfree/\PermGroFac)}^{1/\CRRA}<1$. So, \{\RIC, \cncl{\FHWC}\} implies the {\GICRaw} holds. However, we are not entitled to conclude that the {\GICMod} holds: $\APFac < \PermGroFac$ does not imply $\APFac < \InvEPermShkInv \PermGroFac$ where $\InvEPermShkInv<1$.
We have now established the principal points of comparison between the perfect foresight solutions and the solutions under uncertainty; these are codified in the remaining parts of Tables~\ref{table:Comparison} and~\ref{table:Required}.
\hypertarget{Sufficient-Conditions}{}
\hypertarget{Sufficient-Conditions-For-Nondegenerate-Solution}{}
\input{\TableDir/Required}
\hypertarget{AnalysisoftheConvergedConsumptionFunction}{}
\section{Analysis of the Converged Consumption Function}\label{sec:convergedcfunc}
Figures~\ref{fig:cNrmTargetFig}-\ref{fig:cFuncBounds} capture the main properties of the converged consumption rule when the \RIC, \GICMod, and \FHWC~all hold.\footnote{These figures reflect the converged rule corresponding to the parameter values indicated in Table~\ref{table:Calibration}.}
Figure~\ref{fig:cNrmTargetFig} shows the expected growth factors for consumption, the level of market resources, and the market resources ratio, $\Ex_{t}[\cLvl_{t+1}/\cLvl_{t}]$ and $\Ex_{t}[\mLvl_{t+1}/\mLvl_{t}]$, and $\Ex_{t}[\mNrm_{t+1}/\mNrm_{t}]$, for a consumer behaving according to the converged consumption rule, while Figures~\ref{fig:mpclimits}---\ref{fig:cFuncBounds} illustrate theoretical bounds for the consumption function and the MPC.
Three points are worth highlighting. % features of behavior are captured, or suggested, by the figures.
First, as $\mNrm_{t} \uparrow \infty$ the expected consumption growth factor goes to ${\APFac}$, indicated by the lower bound in Figure~\ref{fig:cNrmTargetFig}, and the marginal propensity to consume approaches $\MPCmin=(1-\RPFac)$ (see Figure~\ref{fig:mpclimits}) --- the same as the perfect foresight MPC.\@ Second, as $\mNrm_{t}$ approaches zero the consumption growth factor approaches $\infty$ (Figure~\ref{fig:cNrmTargetFig}) and the MPC approaches $\MPCmax=(1-\pZero^{1/\CRRA}\RPFac)$ (Figure~\ref{fig:mpclimits}). Third, there is a value of the market resources ratio $\mNrm_{t} = \mBalLvl$ at which the expected growth rate of the level of market resources $\mLvl$ matches the expected growth rate of permanent income $\PermGroFac$, and a different (larger) target ratio $\mTrgNrm$ where $\Ex[\mNrm_{t+1}/\mNrm_{t}]=1$ (and the expected growth rate of consumption is lower than $\PermGroFac$). Thus, at the individual level, this model does not have a single $\mNrm$ at which $\PermLvl,~\mLvl,~$ and $\cLvl$ all are expected to grow at the same rate.
\begin{comment}
Third (Figure~\ref{fig:cNrmTargetFig}), there are two special values of $\mNrm$, which we will call the `individual balanced growth' point $\mBalLvl$ because it is the point where expected consumption growth and expected permanent income growth are balanced, and the `individual target' $\mTrgNrm$ such that if $\mNrm_t = \mTrgNrm$ then $\Ex_t [{\mNrm}_{t+1}] = \mNrm_t$. %As indicated by the arrows of motion on the $\Ex_{t}[\cLvl_{t+1}/\cLvl_{t}]$ curve, the model's dynamics are `stable' around this target in the sense that if $\mNrm_{t} < \mTrgNrm$ then $\mNrm$ will rise (in expectation), while if $\mNrm_{t} > \mTrgNrm$, it will fall (in expectation).Fourth (Figure~\ref{fig:cNrmTargetFig}), at the market resources target $\mTrgNrm$, the expected rate of growth of consumption is slightly less than the expected growth rate
of permanent noncapital income. (The individual consumer does not expect `balanced growth' at $\mTrgNrm$).
The final proposition suggested by Figure~\ref{fig:cNrmTargetFig} is that the expected consumption growth factor is declining in the level of the cash-on-hand ratio $\mNrm_{t}$. This turns out to be true in the absence of permanent shocks, but in extreme cases it can be false if permanent shocks are present.\footnote{Throughout the remaining analysis I make a final assumption that is not strictly justified by the foregoing. We have seen that the finite-horizon consumption functions $\usual{\cFunc}_{T-n}(\mNrm)$ are twice continuously differentiable and strictly concave, and that they converge to a continuous function $\usual{\cFunc}(\mNrm)$. It does not strictly follow that the limiting function $\usual{\cFunc}(\mNrm)$ is twice continuously differentiable, but I will assume that it is.}
\end{comment}
\renewcommand{\figFile}{cNrmTargetFig}
\hypertarget{\figFile}{}
\input{\FigDir/cNrmTargetFig}
\hypertarget{LimitsAsmtToInfty}{}
\subsection{Limits as \texorpdfstring{$\mNrm$}{m} Approaches Infinity}\label{subsec:LimitsAsmtToInfty}
Define
\begin{align*}
\ushort{\cFunc}(\mNrm) & = \MPCmin \mNrm
\end{align*}
which is the solution to an infinite-horizon problem with no noncapital income ($\TranShkAll_{t+n} = 0~\forall~n\geq1$); clearly $\ushort{\cFunc}(\mNrm) < \usual{\cFunc}(\mNrm)$, since allowing the possibility of future noncapital income cannot reduce current consumption. Our imposition of the {\RIC} guarantees that $\MPCmin > 0$, so this solution satisfies our definition of nondegeneracy, and because this solution is always available it defines a lower bound on both the consumption and value functions.%\footnote{We will assume the \RIC~holds here and subsequently so that $\MPCmin > 0$; the situation is a bit more complex when the \RIC~does not hold. In that case the bound on consumption is given by the spending that would be undertaken by a consumer who faced binding liquidity constraints.}
Assuming the {\FHWC}~holds, the infinite horizon perfect foresight solution~\eqref{eq:cFuncPFUnc} constitutes an upper bound on consumption in the presence of uncertainty, since the introduction of uncertainty strictly decreases the level of consumption at any $\mNrm$ (\cite{ckConcavity}). Thus,
\begin{equation} \label{eq:lowerltupper}
\begin{split}
\ushort{\cFunc}(\mNrm) < & \usual{\cFunc}(\mNrm) < \bar{\cFunc}(\mNrm) \\
1 < & \usual{\cFunc}(\mNrm)/\ushort{\cFunc}(\mNrm) < \bar{\cFunc}(\mNrm)/\ushort{\cFunc}(\mNrm).
\end{split}
\end{equation}
But
\begin{align*}% \label{eq:limitlowerupper}
\lim_{m \uparrow \infty} \bar{\cFunc}(\mNrm)/\ushort{\cFunc}(\mNrm)
& = \lim_{m \uparrow \infty} (\mNrm -1+ \hNrm)/\mNrm \\
& = 1,
\end{align*}
so as $\mNrm \uparrow \infty, \usual{\cFunc}(\mNrm)/\ushort{\cFunc}(\mNrm) \rightarrow 1$, and the continuous differentiability and strict concavity of $\usual{\cFunc}(\mNrm)$ therefore implies
\begin{equation*} % \label{eq:limxtoinftycp}
\lim_{m \uparrow \infty} \usual{\cFunc}^{\prime}(\mNrm) =
\ushort{\cFunc}^{\prime}(\mNrm) = \bar{\cFunc}^{\prime}(\mNrm) = \MPCmin
\end{equation*}
because any other fixed limit would eventually lead to a level of consumption either exceeding $\bar{\cFunc}(\mNrm)$ or lower than $\ushort{\cFunc}(\mNrm)$. Figure~\ref{fig:mpclimits} illustrates these limits by plotting the numerical solution.
\renewcommand{\figFile}{mpclimits}
\hypertarget{\figFile}{}
\input{\FigDir/MPCLimits}
\renewcommand{\figFile}{cFuncBounds}
\hypertarget{\figFile}{}
\input{\FigDir/cFuncBounds}
Next we establish the limit of the expected consumption growth factor as $\mNrm_{t} \uparrow \infty$:
\begin{align*}
\lim_{\mNrm_{t} \uparrow \infty} \Ex_{t}[
\cLvl_{t+1}/\cLvl_{t}] & = \lim_{\mNrm_{t} \uparrow \infty} \Ex_{t}[
{\PermGroFac}_{t+1} {\cNrm}_{t+1}/c_{t}].
\end{align*}
But
\begin{align*}
\Ex_{t}[{\PermGroFac}_{t+1} {\ushort{\cNrm}}_{t+1}/\bar{\cNrm}_{t}] \leq \Ex_{t}[{\PermGroFac}_{t+1} {\cNrm}_{t+1}/\cNrm_{t}] \leq \Ex_{t}[{\PermGroFac}_{t+1} {\bar{\cNrm}}_{t+1}/\ushort{\cNrm}_{t}]
\end{align*}
and
\begin{equation*} \label{eq:xttoinfty}
\lim_{\mNrm_t \uparrow \infty} \PermGroFac_{t+1}\ushort{\cFunc}(\mNrm_{t+1})/\bar{\cFunc}(\mNrm_t) =
\lim_{\mNrm_{t} \uparrow \infty} \PermGroFac_{t+1}\bar{\cFunc}(\mNrm_{t+1})/\ushort{\cFunc}(\mNrm_t) =
\lim_{\mNrm_{t} \uparrow \infty}\PermGroFac_{t+1} \mNrm_{t+1}/\mNrm_t,
\end{equation*}
while (for convenience defining $\aFunc(\mNrm_{t})=\mNrm_{t}-\usual{\cFunc}(\mNrm_{t})$), \hypertarget{xtp1toinfty}{}
\begin{align} \label{eq:xtp1toinfty}
\lim_{\mNrm_{t} \uparrow \infty} \PermGroFac_{t+1} \mNrm_{t+1}/\mNrm_t & = \lim_{\mNrm_{t} \uparrow \infty}
\left(\frac{\Rfree \aFunc(\mNrm_t)+{\PermGroFac}_{t+1}\TranShkAll_{t+1}}{\mNrm_t}\right)
\\ & = {(\Rfree \DiscFac)}^{1/\CRRA} = \APFac \notag
\end{align}
because $\lim_{\mNrm_{t}\uparrow \infty} \aFunc^{\prime}(\mNrm)=\RPFac$\footnote{$\displaystyle \lim_{\mNrm_{t}\uparrow \infty} \aFunc(\mNrm_{t})/\mNrm_{t}=1-\lim_{\mNrm_{t}\uparrow \infty} \usual{\cFunc}(\mNrm_{t})/\mNrm_{t}=1-\lim_{\mNrm_{t}\uparrow \infty}\usual{\cFunc}^{\prime}(\mNrm_{t})=\RPFac$.} and $\PermGroFac_{t+1}\TranShkAll_{t+1}/\mNrm_{t} \leq (\PermGroFac \bar{\PermShk} \bar{\TranShkEmp}/\pNotZero )/\mNrm_{t}$ which goes to zero as $\mNrm_{t}$ goes to infinity.
Hence we have
\begin{equation*}
{\APFac} \leq \lim_{\mNrm_{t} \uparrow \infty} \Ex_{t}[\cLvl_{t+1}/\cLvl_{t}] \leq {\APFac}
\end{equation*}
so as cash goes to infinity, consumption growth approaches its value $\APFac$ in the perfect foresight model.
\begin{comment}
Of course, the constraint never becomes irrelevant if human wealth is
infinite. We ruled out infinite human wealth at the beginning of this
section by assuming $\Rfree> \PermGroFac$. If this finite human wealth
condition does not hold, it is possible to show that for any finite
horizon consumer the marginal propensity to consume approaches the
finite-horizon perfect foresight MPC as wealth approaches infinity.
However, as the horizon gets longer, the perfect foresight MPC
approaches zero. It can be shown therefore that the limiting MPC for
the converged consumption function approaches (but never reaches)
zero. (This is why we chose $\MPCminmin=0$ if the \FHWC~fails
in the proofs above.)
\end{comment}
\hypertarget{LimitsAsmtToZero}{}
\subsection{Limits as \texorpdfstring{m}{m} Approaches Zero}
\label{subsec:LimitsAsmtToZero}
Equation~\eqref{eq:MPCmaxInv} shows that the limiting value of
$\MPCmax$ is
\begin{align*}
\MPCmax & = 1-{\Rfree}^{-1}{(\pZero \Rfree\DiscFac)}^{1/\CRRA}.
\end{align*}
Defining $\eFunc(\mNrm)=\cFunc(\mNrm)/\mNrm$ we have
\begin{align*}
\lim_{m \downarrow 0} \eFunc(\mNrm) & = (1-\pZero^{1/\CRRA}\RPFac) = \MPCmax .
\end{align*}
Now using the continuous differentiability of the consumption function along with L'H\^opital's rule, we have
\begin{align*}
\lim_{m \downarrow 0} \usual{\cFunc}^{\prime}(\mNrm) & = \lim_{m \downarrow 0}
\eFunc(\mNrm) = \MPCmax.
\end{align*}
Figure~\ref{fig:mpclimits} visually confirms that the numerical solution obtains this limit for the MPC as $\mNrm$ approaches zero.
For consumption growth, as $\mNrm \downarrow 0$ we have
\begin{align*}
\lim_{\mNrm_{t} \downarrow 0} \Ex_{t}\left[\left(\frac{\cFunc({\mNrm}_{t+1})}{\cFunc(\mNrm_t)}\right){\PermGroFac}_{t+1}\right]
& > \lim_{\mNrm_{t} \downarrow 0} \Ex_{t}\left[\left(\frac{\ushort{\cFunc}({\mathcal{\mathcal{R}}}_{t+1}\aFunc(\mNrm_{t})+{%
\TranShkAll}_{t+1})}{\MPCmax \mNrm_{t}}\right){\PermGroFac}_{t+1}\right] \notag \\
& = \pZero \lim_{\mNrm_{t} \downarrow 0} \Ex_{t}\left[\left(\frac{\ushort{\cFunc}({\mathcal{\mathcal{R}}}_{t+1}\aFunc(\mNrm_{t}))}{\MPCmax \mNrm_{t}}\right){\PermGroFac}_{t+1}\right] \\
& ~~~~~~ + \pNotZero \lim_{\mNrm_{t} \downarrow 0} \Ex_{t}\left[\left(\frac{\ushort{\cFunc}({\mathcal{\mathcal{R}}}_{t+1}\aFunc(\mNrm_{t})+
\TranShkEmp_{t+1}/\pNotZero)}{\MPCmax \mNrm_{t}}\right){\PermGroFac}_{t+1}\right] \\\notag
& > \pNotZero \lim_{\mNrm_{t} \downarrow 0} \Ex_{t}\left[\left(\frac{\ushort{\cFunc}(
\TranShkEmp_{t+1}/\pNotZero)}{\MPCmax \mNrm_{t}}\right){\PermGroFac}_{t+1}\right] \\
& = \infty \nonumber
\end{align*}
where the second-to-last line follows because $\lim_{\mNrm_{t} \downarrow 0} \Ex_{t}\left[\left(\frac{\ushort{\cFunc}({\mathcal{\mathcal{R}}}_{t+1}\aFunc(\mNrm_{t}))}{\MPCmax \mNrm_{t}}\right){\PermGroFac}_{t+1}\right]$ is positive, and the last line follows because the minimum possible realization of $\TranShkEmp_{t+1}$ is $\ushort{\TranShkEmp}>0$ so the minimum possible value of expected next-period consumption is positive.\footnote{None of the arguments in either of the two prior sections depended on the assumption that the consumption functions had converged. With more cumbersome notation, each derivation could have been replaced by the corresponding finite-horizon versions. This strongly suggests that it should be possible to extend the circumstances under which the problem can be shown to define a contraction mapping to the union of the parameter values under which \{\RIC,\FHWC\} hold and \{\FVAC,\WRIC\} hold. That extension is not necessary for our purposes here, so we leave it for future work.}
%\end{document}\endinput
\hypertarget{onetarget}{}
\hypertarget{Unique-Stable-Points}{}
\subsection{Unique `Stable' Points}\label{subsec:onetarget}\hypertarget{TheoremTarget}{}
Theorems whose substance is described here (and whose details are in an appendix) articulate alternative (but closely related) stability criteria.
\subsubsection{`Individual Target Wealth' \texorpdfstring{$\mTrgNrm$}{m}}\label{subsubsec:mTarget}
One kind of `stable' point is a `target' value $\mTrgNrm$ such that if $\mNrm_{t}=\mTrgNrm$, then $\Ex_{t}[\mNrm_{t+1}]=\mNrm_{t}$. Existence of such a target turns out to require the {\GICMod} condition.
\begin{verbatimwrite}{\EqDir/TheoremMTargetIsStable}
\begin{theorem}\iflabelexists{thm:target}{}{\label{thm:target}} % Don't define it if already defined
For the nondegenerate solution to the problem defined in Section~\ref{subsec:Setup} when {\FVAC}, {\WRIC}, and {\GICMod} all hold, there exists a unique cash-on-hand-to-permanent-income ratio $\mTrgNrm>0$ such that
\begin{equation}
\Ex_t [{\mNrm}_{t+1}/\mNrm_t] = 1 \mbox{~if~} \mNrm_t = \mTrgNrm.
\iflabelexists{eq:mTarget}{}{\label{eq:mTarget}} % Don't define it if already defined
\end{equation}
Moreover, $\mTrgNrm$ is a point of `stability' in the sense that
\begin{equation}
\iflabelexists{eq:stability}{}{\label{eq:stability}} % Don't define it if already defined
\begin{split}
\forall {\mNrm}_t\in(0,\mTrgNrm), \,\,& \Ex_t [{\mNrm}_{t+1}] > {\mNrm}_t \\
\forall {\mNrm}_t\in(\mTrgNrm,\infty), \,\,& \Ex_t [{\mNrm}_{t+1}] < {\mNrm}_t.
\end{split}
\end{equation}
\end{theorem}
\end{verbatimwrite}
\input{\LtxDir\EqDir/TheoremMTargetIsStable}
\hypertarget{mTargImplicit}{}
%\end{document}\endinput
Since $\mNrm_{t+1}=(\mNrm_{t}-\cFunc(\mNrm_{t}))\RNrm_{t+1}+\TranShkAll_{t+1}$, the implicit equation for $\mTrgNrm$ is
%\end{document}\endinput
\begin{equation} \label{eq:mTargImplicit}
\begin{split}
\Ex_{t} %[(\mTrgNrm-\cFunc(\mTrgNrm))\RNrm_{t+1}+\TranShkAll_{t+1}] & = \mTrgNrm \\ (\mTrgNrm-\cFunc(\mTrgNrm))\underbrace{\RNrm\Ex_{t}[\PermShk^{-1}]}_{\equiv \bar{\RNrm}}+1 & = \mTrgNrm .
\end{split}
\end{equation}
This is the most restictive among several competing definitions of stability. %Parameterizations that satisfy the {\GICMod} are well-behaved for almost any quantitative purpose.
%\end{document}\endinput
\hypertarget{Collective-Stability}{}
\hypertarget{pseudo-steady-state}{}
\subsubsection{Individual Balanced-Growth `pseudo steady state' \texorpdfstring{$\mBalLvl$}{m}}\label{subsubsec:mSteadyState}
Our least restrictive definition of `stability' derives from a traditional question in macro models: whether there is a `balanced growth' equilibrium in which aggregate variables (income, consumption, market resources) all grow forever by the same factor $\PermGroFac$. For our model, Figure~\ref{fig:cNrmTargetFig} showed that there is no single $\mNrm$ for which $\Ex_{t}[\mLvl_{t+1}]/\mLvl_{t} = \Ex_{t}[\cLvl_{t+1}]/\cLvl_{t} = \PermGroFac$~for an individual consumer. Nevertheless, the next section will show that economies populated by heterogeneous collections of such consumers can exhibit balanced growth in the aggregate, and in the cross-section of households.
%\end{document}\endinput
As an input to that analysis, we show here that if the {\GICRaw} holds, the problem will exhibit a balanced-growth `pseudo-steady-state' point, by which we mean that there is some ${\mBalLvl}$ such that, for all
%\end{document}\endinput
$\mNrm_{t}>{\mBalLvl}$, $\Ex_{t}[\mLvl_{t+1}/\mLvl_{t}] < \PermGroFac$, and conversely if $\mNrm_{t}<{\mBalLvl}$ then $\Ex_{t}[\mLvl_{t+1}/\mLvl_{t}] > \PermGroFac$.
\hypertarget{balgrostable}{}
\hypertarget{balgrostableSolve}{}
%\end{document}\endinput
The critical $\mNrm$ will be the $\mBalLvl$ at which $\mLvl$ growth matches $\PermGroFac$:
\begin{equation}\label{eq:balgrostable}
\begin{split}
\Ex_{t}[\mLvl_{t+1}]/\mLvl_{t} & =\Ex_{t}[\PermLvl_{t+1}]/\PermLvl_{t}
\\ \Ex_{t}[\mNrm_{t+1}\PermGroFac\PermShk_{t+1}\PermLvl_{t}]/(\mNrm_{t}\PermLvl_{t}) & =\Ex_{t}[\PermLvl_{t}\PermGroFac\PermShk_{t+1}]/\PermLvl_{t}
\\ \Ex_{t}\left[\PermShk_{t+1}\underbrace{\left((\mNrm_{t}-\usual{\cFunc}(\mNrm_{t})\Rfree/(\PermGroFac\PermShk_{t+1}))+\TranShkAll_{t+1}\right)}_{\mNrm_{t+1}}\right]/\mNrm_{t} & = 1
\\
\Ex_{t}\left[(\mBalLvl-\usual{\cFunc}(\mBalLvl))\overbrace{\Rfree/\PermGroFac}^{\RNrm}+\PermShk_{t+1}\TranShkAll_{t+1}\right] & = \mBalLvl
\\ (\mBalLvl-\usual{\cFunc}(\mBalLvl))\RNrm+ 1 & = \mBalLvl .
\end{split}
\end{equation}
%\end{document}\endinput
The only difference between~\eqref{eq:balgrostable} and~\eqref{eq:mTargImplicit} is the substitution of $\RNrm$ for $\bar{\RNrm}$.\footnote{A third `stable point' is the $\mBalLog$ where $\Ex_{t}[\log \mLvl_{t+1}] = \log \PermGroFac \mLvl_{t}$; this can be conveniently rewritten as $\Ex_{t}\left[\log\left((\mBalLog-\usual{\cFunc}(\mBalLog))\RNrm+\PermShk_{t+1}\TranShkAll_{t+1}\right)\right] = \log \mBalLog_{t}$. Because the expectation of the log of a stochastic variable is less than the log of the expectation, if a solution for $\mBalLog$ exists it will satisfy $\mBalLog > \mBalLvl$; in turn, if $\mTrgNrm$ exists, $\mTrgNrm>\mBalLog$. $\mBalLog$ is guaranteed to exist when the~{\GICSdl}~condition is satisfied (see below). For our purposes, little would be gained by an analysis of this point parallel to those of the other points of stability; but to accommodate potential practical uses, the {\ARKurl} toolkit computes the value of this point (when it exists) as \texttt{mBalLog}.}$^{,}$\footnote{Our choice to call to this the individual problem's `individual balanced-growth pseudo-steady-state' $\mBalLvl$ is motivated by what happens in the case where all draws of all future shocks just happen to take on their expected value of 1.0. (They unexpectedly always take on their expected values). In that infinitely improbable case, the economy \textit{would} exhibit balanced growth:
\begin{align*}
\Ex_{t}[\mNrm_{t+1}/\mNrm_{t}|\PermShk_{t+1}=\TranShkAll_{t+1}=1] = \PermGroFac \left(\mBalLvl-\cFunc(\mBalLvl)\RNrm + 1 \right)/\mNrm = \PermGroFac.
\end{align*}}
%Theorem~\ref{thm:MSSBalExists}~formally states the relevant proposition.
\begin{verbatimwrite}{\EqDir/TheoremMSSBalExists}
\begin{theorem}
\iflabelexists{thm:MSSBalExists}{}{\label{thm:MSSBalExists}} % Don't define it if already defined
For the nondegenerate solution to the problem defined in Section~\ref{subsec:Setup} when {\FVAC}, {\WRIC}, and {\GICRaw} all hold, there exists a unique pseudo-steady-state cash-on-hand-to-income ratio $\mBalLvl>0$ such that
\begin{equation}
\Ex_t [\PermShk_{t+1}{\mNrm}_{t+1}/\mNrm_t] = 1 \mbox{~if~} \mNrm_t = \mBalLvl.
\iflabelexists{eq:mBalLvl}{}{\label{eq:mBalLvl}} % Don't define it if already defined
\end{equation}
Moreover, $\mBalLvl$ is a point of stability in the sense that
\begin{equation}
\iflabelexists{eq:stabilityStE}{}{\label{eq:stabilityStE}} % Don't define it if already defined
\begin{split}
\forall {\mNrm}_t\in(0,\mBalLvl), \,\,& \Ex_{t}[\mLvl_{t+1}]/\mLvl_{t} > \PermGroFac \\
\forall {\mNrm}_t\in(\mBalLvl,\infty), \,\,& \Ex_{t}[\mLvl_{t+1}]/\mLvl_{t} < \PermGroFac.
\end{split}
\end{equation}
\end{theorem}