-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblackref.tex
3352 lines (1783 loc) · 113 KB
/
blackref.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
% Bibliography macros
%
%\def\refshape{\parshape 2 0truecm 14.765truecm .5truecm
%14.265truecm\noindent} % old ones
%\def\refshape{\parshape 2 0truecm 10.565truecm .5truecm
%10.565truecm\noindent}
%\def\refshape{\parshape 2 0truecm 12.565truecm .5truecm
%10.565truecm\noindent}
% the above works pretty well
\def\refshape{\parshape 2 0truecm 12.165truecm .5truecm
10.565truecm\noindent}
\def\book#1#2#3#4{\refshape #1. #2. {\sl #3}. #4.}
\def\article#1#2#3#4#5{\refshape #1. #2. ``#3'' {\it #4},
#5.}
\def\contribution#1#2#3#4#5#6{\refshape #1. #2. ``#3.'' In #4
(eds.), {\it #5}. #6.}
\def\pcontribution#1#2#3#4#5#6{\refshape #1. #2. ``#3.'' In #4
(eds.), {\it #5}. #6}
\def\ocontribution#1#2#3#4#5#6{\refshape #1. #2. ``#3.'' In #4
(ed.), {\it #5} #6.}
\def\mimeo#1#2#3#4{\refshape #1. #2. ``#3'' Mimeo. #4.}
\def\dissertation#1#2#3#4{\refshape #1. #2. ``#3.'' Ph.D.\
dissertation, #4.}
{\eightpoint
\article{Abel, Andrew B., N. Gregory Mankiw, Lawrence H. Summers,
and Richard J. Zeckhauser}{1989}{Assessing Dynamic Efficiency: Theory and
Evidence.}{Review of Economic Studies}{Vol. 56, pp. 1--20}
\article{Abreu, Dilip}{1988}{On the Theory of Infinitely Repeated Games
with Discounting.}{Econometrica}{Vol. 56, pp. 383--396}
\article{Abreu, Dilip, David Pearce, and Ennio Stacchetti}{1986}
{Optimal Cartel Equilibria with Imperfect Monitoring.}
{Journal of Economic Theory}{Vol. 39, pp. 251--269}
\article{Abreu, Dilip, David Pearce, and Ennio Stacchetti}{1990}
{Toward a Theory of Discounted Repeated Games with Imperfect Monitoring.}
{Econometrica}{Vol. 58(5), pp. 1041--1063}
\mimeo{Acemoglu, Daron}{1997}{Good Jobs versus Bad Jobs: Theory and Some
Evidence.}{CEPR Discussion Paper No. 1588}
\article{Acemoglu, Daron, and Robert Shimer}{1999}{Efficient Unemployment
Insurance.}{Journal of Political Economy}{Vol. 107, pp. 893--928}
\article{Acemoglu, Daron, and Robert Shimer}{2000}
{Productivity gains from unemployment insurance.}
{European Economic
Review}{Vol. 44, pp. 1195--1224}
\book{Adda, Jerome, and Russell W. Cooper}{2003}{Dynamic
Economics: Quantitative Methods and Applications}{Cambridge, Mass.:
MIT Press}
\article{Aghion, Philippe, and Peter Howitt}{1992}{A Model of Growth through
Creative Destruction.}{Econometrica}{Vol. 60, pp. 323--351}
\book{Aghion, Philippe, and Peter Howitt}{1998}{Endogenous Growth Theory}
{Cambridge, Mass.: MIT Press}
\article{Aiyagari, S. Rao}{1985}{Observational Equivalence of the Overlapping
Generations and the Discounted Dynamic Programming Frameworks for
One-Sector Growth.}{Journal of Economic Theory}{Vol. 35(2), pp. 201--221}
\article{Aiyagari, S. Rao}{1987}{Optimality and Monetary Equilibria in Stationary Overlapping Generations Models with Long Lived Agents.}
{Journal of Economic Theory}{Vol. 43, pp. 292--313}
\article{Aiyagari, S. Rao}{1993}{Explaining Financial Market Facts: The Importance of Incomplete Markets and Transaction Costs.}{Quarterly Review}
{Federal Reserve Bank of Minneapolis, Vol. 17(1), pp. 17--31}
\article{Aiyagari, S. Rao}{1994}{Uninsured Idiosyncratic Risk and Aggregate
Saving.}{Quarterly Journal of Economics}{Vol. 109(3), pp. 659--684}
\article{Aiyagari, S. Rao}{1995}{Optimal Capital Income Taxation with Incomplete Markets and Borrowing Constraints.}{Journal of Political Economy}
{Vol. 103(6), pp. 1158--1175}
\article{Aiyagari, S. Rao, and Mark Gertler}{1991}{Asset Returns with
Transactions Costs and Uninsured Individual Risk.}{Journal of
Monetary Economics}{Vol. 27, pp. 311--331}
\article{Aiyagari, S. Rao, and Ellen R. McGrattan}{1998}
{The Optimum Quantity of Debt.}{Journal of Monetary Economics}
{Vol. 42(3), pp. 447--469}
\article{Aiyagari, S. Rao, and Neil Wallace}{1991}{Existence of Steady
States with Positive Consumption in the Kiyotaki-Wright Model.}
{Review of Economic Studies}{Vol. 58(5), pp. 901--916}
\article{Aiyagari, Marcet, Albert, Thomas J. Sargent, and Juha Sepp\"al\"a}
{2002}{Optimal Taxation without State-Contingent Debt.}
{Journal of Political Economy}{Vol. 110(6), pp. 1220--1254}
\article{Albarran, Pedro, and Orazio Attanasio}{2003}{Limited
Commitment and Crowding out of Private Transfers: Evidence from a
Randomized Experiment}{Economic Journal}{Vol. 113(486), pp.
C77--85}
\article{Albrecht, James, and Bo Axell}{1984}{An Equilibrium Model
of Search Unemployment.}{Journal of Political Economy}
{Vol. 92(5), pp. 824--840}
\article{Allen, Franklin}{1985}{Repeated principal-agent relationships with lending and borrowing.}
{Economics Letters}{Vol. 17(1-2), pp. 27-31}
\article{Altug, Sumru}{1989}{Time-to-Build and Aggregate Fluctuations:
Some New Evidence.}{International Economic Review}
{Vol. 30(4), pp. 889--920}
\book{Altug, Sumru, and Pamela Labadie}{1994}{Dynamic Choice and Asset
Markets}{San Diego: Academic Press}
\article{Alvarez, Fernando, and Urban J. Jermann}{2000}{Efficiency,
Equilibrium, and Asset Pricing with Risk of
Default}{Econometrica}{Vol. 68(4), pp. 775-797}
\article{Alvarez, Fernando, and Urban J.
Jermann}{2001}{Quantitative Asset Pricing Implications of
Endogenous Solvency Constraints.}{Review of Financial Studies}
{Vol. 14(4), pp. 1117-1151}
\article{Alvarez, Fernando, and Urban J. Jermann}{2004}{Using Asset Prices to Measure
the Cost of Business Cycles.}{Journal of Political Economy}{Vol. 112, No. 6, pp. 1223--1256}
\article{Alvarez, Fernando, Patrick J. Kehoe, and Pablo Andr\'es Neumeyer}{2004}
{The Time Consistency of Optimal Monetary and Fiscal Policies.}{Econometrica}{Vol. 72, pp. 541--567}
\contribution{Anderson, Evan W., Lars P. Hansen, Ellen R. McGrattan,
and Thomas J. Sargent}{1996}{Mechanics of Forming and Estimating
Dynamic Linear Economies}{Hans M. Amman, David A. Kendrick,
and John Rust}{Handbook of Computational Economics, Vol. 1,
Handbooks in Economics, Vol. 13}{Amsterdam:
Elsevier Science, North-Holland, pp. 171--252}
\article{Anderson, E., L. P. Hansen, and T. J. Sargent}{2003} {A
Quartet of Semigroups for Model Specification, Robustness, Prices of
Risk, and Model Detection.} {Journal of the European Economic
Association} {Vol. 1(1), pp. 68--123}
\article{Ang, Andrew, and Monika Piazzesi}{2003}{A No-Arbitrage Vector
Autoregression of Term Structure Dynamics with Macroeonomic and
Latent Variables.}{Journal of Monetary Economics}{Vol. 50(4),
pp. 745--288}
\article{Angeletos, George-Marios}{2002}{Fiscal Policy With Noncontingent Debt And The Optimal Maturity Structure}{Quarterly Journal of Economics}{Vol. 117(3), pp. 1105-1131}
\book{Apostol, Tom M}{1975}{Mathematical Analysis}{2nd ed.
Reading, Mass.: Addison-Wesley}
\article{Arrow,
Kenneth J}{1962}{The Economic Implications of
Learning by Doing.}{Review of Economic Studies}{Vol. 29, pp. 155--173}
\article{Arrow, Kenneth J}{1964}{The Role of Securities in the Optimal
Allocation of Risk-Bearing.}{Review of Economic Studies}{Vol. 31, pp. 91--96}
\article{\AA str\" om, K. J}{1965}{Optimal Control of Markov Processes
with Incomplete State Information.}{Journal of Mathematical Analysis
and Applications}{Vol. 10, pp. 174--205}
\dissertation{Atkeson, Andrew G}{1988}{Essays in Dynamic International
Economics}{Stanford University}
\article{Atkeson, Andrew G}{1991}{International Lending with Moral Hazard and
Risk of Repudiation.}{Econometrica}{Vol. 59(4), pp. 1069--1089}
\article{Atkeson, Andrew, V. V. Chari, and Patrick J. Kehoe}{2010}{Sophisticated Monetary Policies.}{Quarterly Journal of Economics}{Vol. 125, pp. 47--89}
\article{Atkeson, Andrew, and Robert E. Lucas, Jr}{1992}{On Efficient
Distribution with Private Information.}{Review of Economic Studies}
{Vol. 59(3), pp. 427--453}
\article{Atkeson, Andrew, and Robert E. Lucas, Jr}{1995}{Efficiency
and Equality in a Simple Model of Efficient Unemployment Insurance.}
{Journal of Economic Theory}{Vol. 66(1), pp. 64--88}
\contribution{Atkeson, Andrew, and Christopher Phelan}{1994}
{Reconsidering the Costs of Business Cycles with Incomplete Markets}
{Stanley Fischer and Julio J. Rotemberg}{NBER Macroeconomics Annual}
{Cambridge, Mass.: MIT Press, pp. 187--207}
\contribution{Attanasio, Orazio P}{2000}{Consumption}
{John Taylor and Michael Woodford}{Handbook of Macroeconomics}
{Amsterdam: North-Holland}
\article{Attanasio, Orazio P.,
and Steven J. Davis}{1996}{Relative Wage Movements
and the Distribution of Consumption.}{Journal of Political Economy}{Vol.
104(6), pp. 1227--1262}
\article{Attanasio, Orazio P., and Guglielmo Weber}{1993}{Consumption Growth,
the Interest Rate and Aggregation.}{Review of Economic Studies}
{Vol. 60(3), pp. 631--649}
\book{Auerbach, Alan J., and Laurence J. Kotlikoff}{1987}{Dynamic Fiscal
Policy}{New York: Cambridge University Press}
\article{Auernheimer, Leonardo}{1974}{The Honest Government's Guide to the
Revenue from the Creation of Money.}{Journal of Political Economy}
{Vol. 82, pp. 598--606}
\book{Azariadis, Costas}{1993}{Intertemporal Macroeconomics}
{Cambridge, Mass.: Blackwell Press}
\article{Backus, David K, Patrick J. Kehoe, and , Finn E. Kydland}{1992}
{International Real Business Cycles.}{Journal of Political Economy}{Vol. 100(4), pp. 745-75}
\mimeo{Backus, David K. and Stanley E. Zin}{1994}{Reverse
Engineering the Yield Curve.}{NBER Working Paper No. 4676}
\article{Balasko, Y., and Karl Shell}{1980}{The Overlapping-Generations
Model I: The Case of Pure Exchange without Money.}{Journal of
Economic Theory}{Vol. 23(3), pp. 281--306}
\mimeo{Barillas, F., A. Bhandari, S. Bigio, R. Colacito, M. Juillard, S. Kitao, C. Matthes, T. J. Sargent, and Y. Shin}{2012}
{Practicing Dynare}{New York University}
\article{Barillas, Francisco, Lars Peter Hansen, and Thomas J. Sargent}{2009}{Doubts or variability?}
{Journal of Economic Theory}{Vol. 144(6), pp. 2388-2418}
\article{Barro, Robert J}{1974}{Are Government Bonds Net Wealth?}{Journal of
Political Economy}{Vol. 82(6), pp. 1095--1117}
\article{Barro, Robert J}{1979}{On the Determination of Public Debt.}
{Journal of Political Economy}{Vol. 87, pp. 940--971}
\article{Barro, Robert J., and David B. Gordon}{1983a}{A Positive Theory
of Monetary Policy in a Natural Rate Model.}{Journal of Political Economy}
{Vol. 91, pp. 589--610}
\article{Barro, Robert J., and David B. Gordon}{1983b}{Rules, Discretion,
and Reputation in a Model of Monetary Policy.}{Journal of Monetary
Economics}{Vol. 12, pp. 101--121}
\book{Barro, Robert J., and Xavier Sala-i-Martin}{1995}{Economic Growth}
{New York: McGraw-Hill}
\article{Barseghyan, Levon, Francesca Molinari, Ted O'Donoghue, and Joshua C. Teitelbaum}{2013}
{The Nature of Risk Preferences: Evidence from Insurance Choices.}
% {Working Paper 11-03, Cornell University, Center for Analytic Economics}
% Levon Barseghyan & Francesca Molinari & Ted O'Donoghue & Joshua C. Teitelbaum, 2013.
%"The Nature of Risk Preferences: Evidence from Insurance Choices,"
{American Economic Review}{Vol. 103(6), pp. 2499-2529}
\article{Barsky, Robert B., Gregory N. Mankiw, and Stephen P. Zeldes}{1986}
{Ricardian Consumers with Keynesian Propensities.}{American Economic Review}
{Vol. 76(4), pp. 676--691}
\book{Basar, Tamer, and Geert Jan Olsder}{1982}{Dynamic Noncooperative Game
Theory}{New York: Academic Press}
\article{Bassetto, Marco}{2002}{A Game-Theoretic View of the
Fiscal Theory of the Price Level.}{Econometrica}{Vol. 70(6),
pp. 2167--2195}
\article{Bassetto, Marco}{2005}{Equilibrium and Government
Commitment.}{Journal of Economic Theory}{Vol. 124, No. 1, pp. 79--105}
\article{Bassetto, Marco, and Narayana Kocherlakota}{2004}{On the Irrelevance of Government Debt When Taxes Are Distortionary.}
{Journal of Monetary Economics}{Vol. 51(2), pp. 299--304}
\article{Baumol, William J}{1952}{The Transactions Demand for Cash:
An Inventory Theoretic Approach.}{Quarterly Journal of Economics}
{Vol. 66, pp. 545--556}
\article{Beker, Pablo, and Subir Chattopadhyay}{2010}
{Consumption Dynamics in General Equilibrium: A Characterization When Markets Are Incomplete.}
{Journal of Economic Theory}{Vol. 145, pp. 2133--2185}
\book{Bellman, Richard}{1957}{Dynamic Programming}
{Princeton, N.J.: Princeton University Press}
\book{Bellman, Richard, and Stuart E. Dreyfus}{1962}{Applied Dynamic Programming}
{Princeton, N.J.: Princeton University Press}
\article{Benassy, Jean-Pascal}{1998}{Is There Always Too Little Research in
Endogenous Growth with Expanding Product Variety?}
{European Economic Review}{Vol. 42, pp. 61--69}
\book{Benassy, Jean-Pascal}{2011}{Macroeconomic Theory}{Oxford: Oxford University Press}
\article{Benoit, Jean-Pierre, and Vijay Krishna}{1985}{Finitely Repeated
Games.}{Econometrica}{Vol. 53, pp. 905--922}
\article{Ben-Porath, Yoram}{1967}{The Production of Human Capital and
the Life Cycle of Earnings.}{Journal of Political Economy}
{Vol. 75, pp. 352--365}
\article{Benveniste, Lawrence, and Jose Scheinkman}{1979}{On the
Differentiability of the Value Function in Dynamic Models
of Economics.}{Econometrica}{Vol. 47(3), pp. 727--732}
\article{Benveniste, Lawrence, and Jose Scheinkman}{1982}{Duality Theory
for Dynamic Optimization Models of Economics: The Continuous Time Case.}
{Journal of Economic Theory}{Vol. 27, pp. 1--19}
\article{Bernheim, B. Douglas, and Kyle Bagwell}{1988}{Is Everything Neutral?}
{Journal of Political Economy}{Vol. 96(2), pp. 308--338}
\article{Bertola, Giuseppe, and Ricardo J. Caballero}{1994}{Cross-Sectional
Efficiency and Labour Hoarding in a Matching Model of Unemployment.}
{Review of Economic Studies}{Vol. 61, pp. 435--456}
\book{Bertsekas, Dimitri P}{1976}{Dynamic Programming and Stochastic Control}
{New York: Academic Press}
\book{Bertsekas, Dimitri P}{1987}{Dynamic Programming: Deterministic
and Stochastic Models}{Englewood Cliffs, N.J.: Prentice-Hall}
\book{Bertsekas, Dimitri P., and Steven E. Shreve}{1978}{Stochastic Optimal
Control: The Discrete Time Case}{New York: Academic Press}
\article{Bewley, Truman F}{1977}{The Permanent Income Hypothesis:
A Theoretical Formulation.}{Journal of Economic Theory}
{Vol. 16(2), pp. 252--292}
\contribution{Bewley, Truman F}{1980}{The Optimum Quantity of Money}
{J. H. Kareken and N. Wallace}{Models of Monetary Economies}
{Minneapolis: Federal Reserve Bank of Minneapolis, pp. 169--210}
\article{Bewley, Truman F}{1983}{A Difficulty with the Optimum
Quantity of Money.}{Econometrica}{Vol. 51, pp. 1485--1504}
\contribution{Bewley, Truman F}{1986}{Stationary Monetary Equilibrium with a
Continuum of Independently Fluctuating Consumers}{Werner Hildenbrand and
Andreu Mas-Colell}{Contributions to Mathematical Economics in Honor of
Gerard Debreu}{Amsterdam: North-Holland, pp. 79--102}
\article{Bhandari, Anmol, David G. Evans, Mikhail Golsov, and Thomas J. Sargent}{2017}{Fiscal Policy and Debt Management with Incomplete Markets.}
{Quarterly Journal of Economics}{XXXXX}
\article{Black, Fisher, and Myron Scholes}{1973}{The Pricing of Options and
Corporate Liabilities.}{Journal of Political Economy}{Vol. 81, pp. 637--654}
\article{Blackwell, David}{1965}{Discounted Dynamic Programming.}{Annals of
Mathematical Statistics}{Vol. 36(1), pp. 226--235}
\article{Blanchard, Olivier Jean}{1985}{Debt, Deficits, and Finite
Horizons.}{Journal of Political Economy}
{Vol. 93(2), pp. 223--247}
\book{Blanchard, Olivier Jean, and Stanley Fischer}{1989}{Lectures on
Macroeconomics}{Cambridge, Mass.: MIT Press}
\article{Blanchard, Olivier Jean, and Charles M. Kahn}{1980}{The Solution
of Linear Difference Models under Rational Expectations.}
{Econometrica}{Vol. 48(5), pp. 1305--1311}
\article{Blume, Lawrence and David Easley}{2006}
{If You're so Smart, why Aren't You Rich? Belief Selection in Complete and Incomplete Markets.}
{Econometrica}{Vol. 74(4), pp. 929-966}
\article{Blundell, Richard and Ian Preston}{1998}{Consumption
Inequality and Income Uncertainty.}{Quarterly Journal of
Economics} {Vol. 113(2), pp. 603-640}
\article{Bohn, Henning}{1995}{The Sustainability of Budget Deficits in a
Stochastic Economy.}{Journal of Money, Credit, and Banking}{Vol. 27(1),
pp. 257--271}
\article{Bond, Eric W., and Jee-Hyeong Park}{2002}{Gradualism in Trade Agreements
with Asymmetric Countries.}{Review of Economic Studies}{Vol. 69,
pp. 379--406}
\article{Braun, R. Anton}{1994}
{Tax Disturbances and Real Economic Activity in the Postwar United States.}
{Journal of Monetary Economics}{Vol. 33(3), pp. 441--462}
\article{Breeden, Douglas T}{1979}{An Intertemporal Asset Pricing Model
with Stochastic Consumption and Investment Opportunities.}
{Journal of Financial Economics}{Vol. 7(3), pp. 265--296}
\article{Brock, William A}{1972}{On Models of Expectations Generated by
Maximizing Behavior of Economic Agents Over Time.}{Journal of
Economic Theory}{Vol. 5, pp. 479--513}
\article{Brock, William A}{1974}{Money and Growth: The Case of
Long Run Perfect Foresight.}{International Economic Review}
{Vol. 15, pp. 750--777}
\ocontribution{Brock, William A}{1982}{Asset Prices in a Production Economy}
{J. J. McCall}{The Economics of Information and Uncertainty.}
{Chicago: University of Chicago Press, pp. 1--43}
\contribution{Brock, William A}{1990}{Overlapping Generations Models
with Money and Transactions Costs}{B. M. Friedman and F. H. Hahn}
{Handbook of Monetary Economics, Vol. 1}{Amsterdam: North-Holland,
pp. 263-295}
\article{Brock, William A., and Leonard Mirman}{1972}{Optimal Economic
Growth and Uncertainty: The Discounted Case.}{Journal of Economic Theory}
{Vol. 4(3), pp. 479--513}
\contribution{Browning, Martin, Lars P. Hansen, and James J. Heckman}
{1999}{Micro Data and General Equilibrium Models}
{John Taylor and Michael Woodford}{Handbook of Macroeconomics. {\rm Volume 1A}}
{Amsterdam: North-Holland, pp. 543--633}
\article{Bruno, Michael, and Stanley Fischer}{1990}{Seigniorage, Operating
Rules, and the High Inflation Trap.}{Quarterly Journal of Economics}
{Vol. 105, pp. 353--374}
\article{Bryant, John, and Neil Wallace}{1984}{A Price Discrimination
Analysis of Monetary Policy.}{Review of Economic Studies}
{Vol. 51(2), pp. 279--288}
\article{Buera, Francisco, and Juan Pablo Nicolini}{2004}
{Optimal maturity of government debt without state contingent bonds}{Journal of Monetary Economics}{Vol. 51(3), pp. 531-554}
\article{Buiter, Willem H}{2002}{The Fiscal Theory of the Price Level:
A Critique.}{Economic Journal}{Vol. 112, pp. 459--480}
\article{Bulow, Jeremy, and Kenneth Rogoff}{1989}{Sovereign Debt:
Is to Forgive to Forget?}{American Economic Review}
{Vol. 79, pp. 43--50}
\article{Burdett, Kenneth, and Kenneth L. Judd}{1983}
{Equilibrium Price Dispersion}{Econometrica}{Vol. 51(4), pp. 955-69}
\article{Burdett, Kenneth, and Dale T. Mortensen}{1998}{Wage Differentials, Employer Size, and Unemployment}
{International Economic Review}{Vol. 39(2), pp. 257--73}
\article{Burdett, Kenneth, Shouyong Shi, and Randall Wright}{2001}
{Pricing and Matching with Frictions.}{Journal of Political Economy}
{Vol. 109(5), pp. 1060--1085}
\article{Burnside, C., M. Eichenbaum, and S. Rebelo}{1993}
{Labor Hoarding and the Business Cycle.}{Journal of Political Economy}
{Vol. 101(2), pp. 245--273}
\article{Burnside, C., and M. Eichenbaum}{1996a}{Factor Hoarding and the
Propagation of Business Cycle Shocks.}{American Economic Review}
{Vol. 86(5), pp. 1154--74}
\article{Burnside, C., and M. Eichenbaum}{1996b}{Small Sample Properties
of GMM Based Wald Tests.}{Journal of Business and Economic Statistics}
{Vol. 14(3), pp. 294--308}
\article{Caballero, Ricardo J}{1990}{Consumption Puzzles and Precautionary
Saving.}{Journal of Monetary Economics}{Vol. 25, No. 1, pp. 113-136}
\ocontribution{Cagan, Phillip}{1956}{The Monetary Dynamics of Hyperinflation}
{Milton Friedman}{Studies in the Quantity Theory of Money.}
{Chicago: University of Chicago Press, pp. 25--117}
\article{Calvo, Guillermo A}{1978}{On the Time Consistency of Optimal Policy
in a Monetary Economy.}{Econometrica}{Vol. 46(6), pp. 1411--1428}
\article{Calvo, Guillermo A}{1983}{Staggered prices in a utility-maximizing framework.}{Journal of Monetary Economics}
{Vol. 12, No.3, pp. 383--398}
\book{Campbell, John Y., Andrew W. Lo, and A. Craig MacKinlay}{1997}
{The Econometrics of Financial Markets}{Princeton, N.J.: Princeton University
Press}
\article{Campbell, John Y., and John H. Cochrane}{1999}{By Force of Habit:
A Consumption-Based Explanation of Aggregate Stock Market Behavior.}
{Journal of Political Economy}{Vol. 107(2), pp. 205--251}
\article{Campbell, John Y., and Robert Shiller}{1988}{The
Dividend-Price Ratio And Expectations of Future Dividends and
Discount Factors.}{Review of Financial Studies}{Vol. 1, pp.
195--227}
\article{Campbell, John Y., and Robert Shiller}{1991}
{Yield Spreads and Interest Rate Movements: A Bird's Eye View.}
{Review of Economic Studies}{Vol. 58, pp. 495--514}
\book{Canova, Fabio}{2007}{Method for Applied Macroeconomic Research}
{Princeton, New Jersey: Princeton University Press}
\article{Carroll, Christopher D., and Miles S. Kimball}{1996}
{On the Concavity of the Consumption Function.}{Econometrica}
{Vol. 64(4), pp. 981--992}
\article{Casella, Alessandra, and Jonathan S. Feinstein}{1990}
{Economic Exchange during Hyperinflation.}{Journal of Political Economy}
{Vol. 98(1), pp. 1--27}
\article{Cass, David}{1965}{Optimum Growth in an Aggregative Model
of Capital Accumulation.}{Review of Economic Studies}
{Vol. 32(3), pp. 233--240}
\article{Cass, David}{1972}{On Capital Overaccumulation in the
Aggregative, Neoclassical Model of Economic Growth: A Complete
Characterization.}{Journal of Economic Theory}{Vol. 4, pp.
200--233}
\article{Cass, David, and M. E. Yaari}{1966}{A Re-examination of the
Pure Consumption Loans Model.}{Journal of Political Economy}
{Vol. 74, pp. 353--367}
\article{Cass, David, and Karl Shell}{1983}{Do Sunspots Matter?}
{Journal of Political Economy}{Vol. 91(2), pp. 193--227}
\article{Chamberlain, Gary, and Charles Wilson}{2000}{Optimal Intertemporal
Consumption Under Uncertainty.}{Review of Economic Dynamics}
{Vol. 3(3), pp. 365--395}
\article{Chamley, Christophe}{1986}{Optimal Taxation of Capital Income
in General Equilibrium with Infinite Lives.}{Econometrica}
{Vol. 54(3), pp. 607--622}
\article{Chamley, Christophe, and Heraklis Polemarchakis}{1984}
{Assets, General Equilibrium, and the Neutrality of Money.}
{Review of Economic Studies}{Vol. 51, pp. 129--138}
\book{Champ, Bruce, and Scott Freeman}{1994}
{Modeling Monetary Economies}{New York: Wiley}
\article{Chang, Roberto}{1998}{Credible Monetary Policy in an Infinite
Horizon Model: Recursive Approaches.}{Journal of Economic Theory}
{Vol. 81(2), pp. 431--461}
\article{Chang, Yongsung, and Sun-Bin Kim}{2007}{Heterogeneity and
Aggregation: Implications for Labor-Market Fluctuations.}
{American Economic Review}{Vol. 97, pp. 1939--1956}
\article{Chari, V. V., Lawrence J. Christiano, and Martin Eichenbaum}
{1998}{Expectations Traps.}{Journal of Economic Theory}
{Vol. 81(2), pp. 462--492}
\article{Chari, V. V., Lawrence J. Christiano, and Patrick J. Kehoe}
{1994}{Optimal Fiscal Policy in a Business Cycle Model.}
{Journal of Political Economy}{Vol. 102(4), pp. 617--652}
\article{Chari, V. V., Lawrence J. Christiano, and Patrick J. Kehoe}{1996}
{Optimality of the Friedman Rule in Economies with Distorting Taxes.}
{Journal of Monetary Economics}{Vol. 37(2), pp. 203--223}
\article{Chari, V. V., and Patrick J. Kehoe}{1990}{Sustainable Plans.}
{Journal of Political Economy}{Vol. 98, pp. 783--802}
\article{Chari, V. V., and Patrick J. Kehoe}{1993a}{Sustainable Plans
and Mutual Default.}{Review of Economic Studies}
{Vol. 60, pp. 175--195}
\article{Chari, V. V., and Patrick J. Kehoe}{1993b}{Sustainable Plans and
Debt.}{Journal of Economic Theory}{Vol. 61, pp. 230--261}
\ocontribution{Chari, V. V., Patrick J. Kehoe, and Edward C. Prescott}{1989}
{Time Consistency and Policy}{Robert Barro}{Modern Business Cycle
Theory.}{Cambridge, Mass.: Harvard University Press, pp. 265--305}
\article{Chatterjee, Satyajit, and Dean Corbae}{1996}{Money and Finance
with Costly Commitment.}{Journal of Monetary Economics}
{Vol. 37(2), pp. 225--248}
\article{Chen, Ren-Raw, and Louis Scott}{1993}{Maximum Likelihood
Estimation for a Multifactor Equilibrium Model of the Term Structure
of Interest Rates.}{Journal of Fixed Income}{pp. 95--09}
\article{Ch\'eron, Arnaud, Jean-Olivier Hairault, and Fran\c cois Langot}
{2013}{Life-Cycle Equilibrium Unemployment.}{Journal of Labor Economics}
{Vol. 31(4), pp. 843--882}
\article{Cho, In-Koo, and Akihiko Matsui}{1995}{Induction and the Ramsey
Policy.}{Journal of Economic Dynamics and Control}
{Vol. 19(5--7), pp. 1113--1140}
\book{Chow, Gregory}{1981}{Econometric Analysis by Control Methods}
{New York: Wiley}
\book{Chow, Gregory}{1997}{Dynamic Economics: Optimization
by the Lagrange Method}{New York: Oxford University Press}
\article{Christiano, Lawrence J}{1990}{Linear-Quadratic Approximation and
Value-Function Iteration: A Comparison.}{Journal of Business
and Economic Statistics}{Vol. 8(1), pp. 99--113}
\article{Christiano, Lawrence J., and M. Eichenbaum}{1992}{Current Real
Business Cycle Theories and Aggregate Labor Market Fluctuations.}
{American Economic Review}{Vol. 82(3)}
\article{Christiano, Lawrence J., M. Eichenbaum, and C.
Evans}{2003}{Nominal Rigidities and the Dynamic Effects of a Shock
to Monetary Policy.}{Journal of Political Economy}{forthcoming}
\article{Christiano, Lawrence J., Martin S. Eichenbaum,
and Mathias Trabandt}{2016}{Unemployment and Business Cycles.}
{Econometrica}{Vol. 84(4), pp. 1523--1569}
\article{Christiano, Lawrence J., R. Motto, and M.
Rostagno}{2003}{The Great Depression and the Friedman-Schwartz
Hypothesis.}{Proceedings, Federal Reserve Bank of Cleveland}{pp. 1119-1215}
\book{Christensen, Bent Jasper and Nicholas M. Kiefer}{2009}
{Economic Modeling and Inference}{Princeton, New Jersey: Princeton University
Press}
\article{Clower, Robert}{1967}{A Reconsideration of the Microfoundations
of Monetary Theory.}{Western Economic Journal}{Vol. 6, pp. 1--9}
\article{Cochrane, John H}{1991}{A Simple Test of Consumption Insurance.}
{Journal of Political Economy}{Vol. 99(5), pp. 957--976}
\article{Cochrane, John H}{1997}{Where Is the Market Going? Uncertain Facts and
Novel Theories.}{Economic Perspectives}{Vol. 21(6), pp. 3--37}
\contribution{Cochrane, John H., and Lars Peter Hansen}{1992}
{Asset Pricing Explorations for Macroeconomics}{Olivier Jean Blanchard and Stanley Fischer}
{NBER Macroeconomics Annual}{Cambridge, Mass.: MIT Press, pp. 115--165}
\article{Cochrane, John H}{2005}{Money as stock}{Journal of Monetary Economics}{Vol. 52(3), pp. 501--528}
\article{Cogley, Timothy}{1999}{Idiosyncratic Risk and the Equity Premium: Evidence from the Consumer Expenditure Survey.}{Journal of Monetary Economics}{Vol. 49(2), pp. 309--334}
\article{Cogley, Timothy, Thomas J. Sargent, Viktor Tsyrennikov}{2013}{Wealth Dynamics in a Bond Economy with
Heterogeneous Beliefs}{Economic Journal}{XXXXX In press}
\mimeo{Cole, Harold L., and Narayana Kocherlakota}{1998}
{Dynamic Games with Hidden Actions and Hidden States.}{Federal Reserve Bank
of Minneapolis: Staff Report 254}
\article{Cole, Harold L., and Narayana Kocherlakota}{2001}
{Efficient Allocations with Hidden Income and Hidden Storage.}
{Review of Economic-Studies}{Vol. 68(3), pp. 523--42}
\mimeo{Correia, Isabel, Emmanuel Farhi, Juan Pablo Nicolini, and Pedro Teles}{2010}
{Policy at the Zero Bound.}{Federal Reserve Bank of Minneapolis}
%\mimeo{Acemoglu, Daron}{1997}{Good Jobs versus Bad Jobs: Theory and Some
%Evidence.}{CEPR Discussion Paper No. 1588}
\article{Constantinides, George M., and Darrell Duffie}{1996}{Asset Pricing
with Heterogeneous Consumers.}{Journal of Political Economy}
{Vol. 104(2), pp. 219--240}
\book{Cooley, Thomas F}{1995}{Frontiers of Business Cycle Research}
{Princeton, N.J.: Princeton University Press}
\book{Cooper, Russell W}{1999}{Coordination Games: Complementarities
and Macroeconomics}{New York: Cambridge University Press}
\article{Correia, Isabel H}{1996}{Should Capital Income Be Taxed
in the Steady State?}{Journal of Public Economics}
{Vol. 60(1), pp. 147--151}
\article{Correia, Isabel, and Pedro Teles}{1996}{Is the Friedman Rule Optimal
When Money Is an Intermediate Good?}{Journal of Monetary Economics}
{Vol. 38, pp. 223--244}
\article{Cox, John C., Jonathan E. Ingersoll, Jr., and Stephen A. Ross}{1985a}
{An Intertemporal General Equilibrium Model of Asset Prices.}
{Econometrica}{Vol. 53(2), pp. 363--384}
\article{Cox, John C., Jonathan E. Ingersoll, Jr., and Stephen A. Ross}{1985b}
{A Theory of the Term Structure of Interest Rates.}{Econometrica}
{Vol. 53(2), pp. 385--408}
\article{Dai, Qiang, and Kenneth J. Singleton}
{2000}{Specification Analysis of Affine Term Structure Models.}
{Journal of Finance}{Vol. LV, pp. 1943-1978}
\contribution{Davies, James B. and Anthony Shorrocks}{2000}{The Distribution of Wealth}
{A.B. Atkinson, F. Bourguignon}
{Handbook of Income Distribution, Vol. 1.}{Amsterdam: North-Holland, pp. 605--675}
\mimeo{Davis, Steven J}{1995}{The Quality Distribution of Jobs and the
Structure of Wages in Search Equilibrium.}{Chicago: University of Chicago Graduate School of Business}
\book{Deaton, Angus}{1992}{Understanding Consumption}
{New York: Oxford University Press}
\article{Deaton, Angus and Christina Paxson}{1994}{Intertemporal Choice and Inequality.}
{Journal of Political Economy}{Vol. 102(3), pp. 437-67}
\article{Debreu, Gerard}{1954}{Valuation Equilibrium and Pareto Optimum.}
{Proceedings of the National Academy of Sciences}{Vol. 40, pp. 588--592}
\book{Debreu, Gerard}{1959}{Theory of Value}{New York: Wiley}
\book{DeJong, David and Chetan Dave}{2011}{Structural Macroeconometrics, second edition}
{Princeton and Oxford: Princeton University Press}
\article{Den Haan, Wouter J., and Albert Marcet}{1990}
{Solving the Stochastic Growth Model by Parametering Expectations.}
{Journal of Business and Economic Statistics}{Vol. 8(1), pp. 31--34}
\article{Den Haan, Wouter J and Albert Marcet}{1994}{Accuracy in
Simulations.}
{Review of Economic Studies}{Vol.
61(1), pp. 3--17}
\article{Diamond, Peter A}{1965}{National Debt in a Neoclassical Growth
Model.}{American Economic Review}{Vol. 55, pp. 1126--1150}
\article{Diamond, Peter A}{1981}{Mobility Costs, Frictional Unemployment, and
Efficiency.}{Journal of Political Economy}{Vol. 89(4), pp. 798--812}
\article{Diamond, Peter A}{1982}{Wage Determination and Efficiency in
Search Equilibrium.}{Review of Economic Studies}{Vol. 49, pp. 217--227}
\article{Diamond, Peter A}{1984}{Money in Search Equilibrium.}
{Econometrica}{Vol. 52, pp. 1--20}
\article{Diamond, Peter A., and Joseph Stiglitz}{1974}{Increases in Risk
and in Risk Aversion.}{Journal of Economic Theory}
{Vol. 8(3), pp. 337--360}
\article{Diaz-Gim\' enez, J., Edward C. Prescott, T. Fitzgerald, and
Fernando Alvarez}{1992}{Banking in Computable General Equilibrium Economies.}
{Journal of Economic Dynamics and Control}{Vol. 16, pp. 533--560}
\article{Diaz-Gim\' enez, J., V. Quadrini, and J.V. R\'\i
os-Rull}{1997}{Dimensions of Inequality: Facts on the U.S.
Distributions of Earnings, Income, and Wealth.}{Quarterly Review}
{Federal Reserve Bank of Minneapolis, Vol. 21, pp. 3--21}
\article{Dixit, Avinash K., Gene Grossman, and Faruk Gul}{2000}
{The Dynamics of Political Compromise.}{Journal of Political Economy}{Vol. 108(3), pp. 531--568}
\article{Dixit, Avinash K., and Joseph E. Stiglitz}{1977}{Monopolistic
Competition and Optimum Product Diversity.}{American Economic Review}
{Vol. 67, pp. 297--308}
\article{De Santis, Massimiliano}{2007}{Individual Consumption Risk and the Welfare Cost
of Business Cycles}{American Economic Review}{Vol. 97, No. 4, pp. 1488--1506}
\article{Dolmas, J}{1998}{Risk Preferences and the Welfare Cost of
Business Cycles.}{Review of Economic Dynamics}
{Vol. 1(3), pp. 646--676}
\mimeo{Domeij, David, and Jonathan Heathcote}{2000}{Capital versus
Labor Income Taxation with Heterogeneous Agents.}{Stockholm School of Economics}
\book{Doob, Joseph L}{1953}{Stochastic Processes}{New York: Wiley}
\article{Dornbusch, Rudiger}{1976}{Expectations and Exchange Rate Dynamics.}
{Journal of Political Economy}{Vol. 84, pp. 1161--1176}