-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathChapter1.tex
More file actions
1884 lines (1545 loc) · 65.9 KB
/
Chapter1.tex
File metadata and controls
1884 lines (1545 loc) · 65.9 KB
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
\documentclass[11pt,aspectratio=169]{beamer}
% -------------------- THEME & LAYOUT --------------------
\usetheme{Madrid}
\usecolortheme{dolphin} % base color scheme
\usefonttheme{professionalfonts}
\setbeamercovered{transparent}
\setbeamertemplate{navigation symbols}{} % remove navigation buttons
\setbeamertemplate{caption}[numbered] % numbered captions
\setbeamertemplate{itemize items}[triangle]
\setbeamersize{text margin left=1.2cm,text margin right=1.2cm} % adjust to taste
% -------------------- GLOBAL FONT SETTINGS --------------------
% 1. Force the base beamer font to small
\setbeamerfont{normal text}{size=\small}
% 2. Force math environments to follow the "small" font size
\setbeamerfont{math text}{size=\small}
\setbeamerfont{equation}{size=\small}
% 3. Redefine \normalsize itself
% This ensures equations and lists (which look for \normalsize) use instead.
\let\oldnormalsize\normalsize
\renewcommand{\normalsize}{\oldnormalsize\small}
% 4. Ensure lists also stay small
\setbeamerfont{itemize/enumerate body}{size=\small}
\setbeamerfont{itemize/enumerate subbody}{size=\small}
% -------------------- FONTS & TYPOGRAPHY --------------------
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{newpxtext,newpxmath} % Palatino-like font & math
\usepackage{microtype}
% -------------------- MATH, TABLES & GRAPHICS --------------------
\usepackage{amsmath,amssymb,amsfonts,mathtools}
\usepackage{bm,booktabs,siunitx,graphicx}
\graphicspath{{./}{./figures/}}
\renewcommand{\theequation}{1.\arabic{equation}}
% -------------------- UTILITIES --------------------
\usepackage{appendixnumberbeamer}
\usepackage{ragged2e}
\usepackage{xspace}
\usepackage{csquotes}
\usepackage{xcolor}
% -------------------- HYPERREF --------------------
\hypersetup{
colorlinks=false,
pdfauthor={Francesca},
pdftitle={Chapter 1 — The Value of Currency}
}
% -------------------- COLORS & EMPHASIS --------------------
\definecolor{myblue}{RGB}{0,70,140}
\definecolor{myred}{RGB}{180,30,30}
\definecolor{mygreen}{RGB}{0,120,70}
\definecolor{gold}{RGB}{184,134,11}
\setbeamercolor{title}{fg=gold} % title page
\setbeamercolor{frametitle}{fg=gold} % slide titles
\setbeamercolor{structure}{fg=gold} % bullets, sections, links
\setbeamercolor{section in head/foot}{fg=gold,bg=black!10} % gold text on light background
% -------------------- FOOTLINE --------------------
\setbeamertemplate{footline}{
\leavevmode%
\hbox{%
% Section links (hidden if no current section)
\begin{beamercolorbox}[wd=0.7\paperwidth,ht=2.5ex,dp=1.5ex,leftskip=1.4em]{section in head/foot}%
\ifx\insertsection\empty
% nothing
\else
Section: \insertsection
\fi
\end{beamercolorbox}%
% Frame number right
\begin{beamercolorbox}[wd=0.3\paperwidth,ht=2.5ex,dp=1.5ex,leftskip=3.8cm]{section in head/foot}%
\insertframenumber/\inserttotalframenumber
\end{beamercolorbox}%
}%
\vskip1pt%
}
\newcommand{\highlight}[1]{\textcolor{myblue}{#1}}
\newcommand{\warning}[1]{\textcolor{myred}{#1}}
% -------------------- SHORTCUTS --------------------
\newcommand{\E}{\mathbb{E}}
\newcommand{\R}{\mathbb{R}}
\newcommand{\dd}{\mathrm{d}}
\newcommand{\mc}[1]{\mathcal{#1}}
\newcommand{\bb}[1]{\mathbb{#1}}
\newcommand{\uc}{U_c}
\newcommand{\zg}{Z_g}
% -------------------- TIGHTER DISPLAY MATH --------------------
\makeatletter
\g@addto@macro\normalsize{%
\setlength\abovedisplayskip{8pt}%
\setlength\belowdisplayskip{8pt}%
\setlength\abovedisplayshortskip{6pt}%
\setlength\belowdisplayshortskip{6pt}%
}
\makeatother
\setbeamertemplate{frametitle}{
\nointerlineskip
\begin{beamercolorbox}[wd=\paperwidth,ht=3.5ex,dp=1ex,center]{frametitle}
\centering\insertframetitle
\end{beamercolorbox}
}
% -------------------- METADATA --------------------
\title[Part I — Currency and Money]{\textbf{Part I: Currency and Money}\\[2pt]\large Chapter 1 — The Value of Currency}
\subtitle{Currency, Money, and Price-Level Determination}
\author{Francesca}
\institute{}
\date{\today}
% -------------------- SECTION ROADMAP --------------------
\AtBeginSection[]
{
\begin{frame}
\tableofcontents[currentsection, hideothersubsections]
\end{frame}
}
\begin{document}
\setcounter{equation}{0}
% ===================== TITLE SLIDE =====================
\begin{frame}[plain] % 'plain' removes header/footer for the title slide
\begin{columns}[T,totalwidth=\textwidth]
% ----- Left column: Main title, professor, chapter -----
\begin{column}{0.45\textwidth}
\vspace{2cm}
% Main title
{\usebeamercolor[fg]{title}\LARGE\textbf{Monetary Economics}\\[0.3cm]
\LARGE\textbf{and Policy}}
\vspace{0.5cm}
% Professor name and date
{\large\textit{Pierpaolo Benigno}}\\[0.1cm]
\vspace{1cm}
% Chapter and subtitle
{\usebeamercolor[fg]{frametitle}\large Chapter 1: The Value of Currency}
\end{column}
% ----- Right column: Image -----
\begin{column}{0.55\textwidth}
\vspace{1cm}
\centering
\includegraphics[width=0.9\linewidth]{Cover.png}
\end{column}
\end{columns}
% ----- Footer text (bottom-right corner) -----
\vspace*{2cm} % adjust if needed
\hfill{\large\textit{Prepared by Marcos Consuegra}}
\end{frame}
\begin{frame}{What We Will Learn}
\begin{itemize}
\item Understand the distinction between \textbf{currency}, \textbf{money}, and their core functions in the economy.
\vspace{0.2cm}
\item Study how the \textbf{value of currency} is determined in a simple model economy.
\vspace{0.2cm}
\item Explore how \textbf{monetary and fiscal policy} interact to anchor the price level.
\vspace{0.2cm}
\item Compare two main frameworks of price determination:
\begin{itemize}
\item \textbf{Fiscal Theory of the Price Level (FTPL)}
\item \textbf{Central Bank Theory of the Price Level (CBTPL)}
\end{itemize}
\vspace{0.2cm}
\item Assess the role of \textbf{real backing} (taxes, assets, gold) in ensuring a stable value of currency.
\end{itemize}
\end{frame}
% OUTLINE
\begin{frame}{Outline}
\tableofcontents
\end{frame}
% ======================================
\section{Currency and Money: Concepts}
% ======================================
\begin{frame}{Currency: Metallic (Commodity) Regime}
\begin{itemize}
\item The term \textbf{currency} refers to a well-defined monetary unit issued under a recognized authority.
\vspace{0.2cm}
\item \textbf{Example – The Florentine Florin}
Struck by the Republic of Florence and circulating between \textbf{1252 and 1533}:
\begin{itemize}
\item A gold coin containing \textbf{54 grains} ($\approx$ 3.499 g $\approx$ 0.1125 troy oz) of fine gold.
\item Featured a consistent alloy and purity.
\item Bore the emblem of the city (\textit{giglio}) on one side and \textbf{Saint John the Baptist} on the reverse.
\end{itemize}
\vspace{0.2cm}
\item Metallic coins had \textbf{intrinsic value}, directly linked to their precious-metal content.
\end{itemize}
\end{frame}
\begin{frame}{The Florentine Florin}
\centering
\includegraphics[width=0.65\linewidth]{Figures/FlorentinFlorin.jpg}\\[0.3cm]
{\scriptsize Florentine Florin (Republic of Florence, 13th–16th century).\\
Obverse: \textit{giglio}; Reverse: Saint John the Baptist.}
\end{frame}
\begin{frame}{Currency: Paper-Backed Regime}
\begin{itemize}
\item \textbf{Example – The U.S. Dollar under the Gold Standard}
formally established by the \textbf{Gold Standard Act of 1900} and maintained until \textbf{1933}.
\begin{itemize}
\item Each dollar was defined as \textbf{23.22 grains of gold} ($\approx$ 1.5046 g).
\item The dollar was a \textbf{liability of the U.S. Treasury} and an \textbf{asset for the bearer}.
\item Gold certificates explicitly stated:
\textit{“This certifies that there have been deposited in the Treasury of the United States one dollar in gold coin, payable to the bearer on demand.”}
\end{itemize}
\vspace{0.2cm}
\item This system linked the value of paper currency to a \textbf{fixed quantity of gold}, ensuring convertibility.
\end{itemize}
\end{frame}
\begin{frame}{U.S. Dollar under the Gold Standard}
\centering
\includegraphics[width=0.7\linewidth]{Figures/GoldDollar.png}\\[0.4cm]
{\scriptsize U.S. Gold Certificate, early 20th century.\\
Printed statement: “This certifies that there have been deposited in the Treasury of the United States one dollar in gold coin, payable to the bearer on demand.”}
\end{frame}
\begin{frame}{Intrinsically Worthless Currency}
\begin{itemize}
\item The \emph{currency unit} is \textbf{not} tied to any commodity.
\vspace{0.2cm}
\item An \textbf{intrinsically worthless currency} is a claim that makes no other promise than to be redeemable in units of itself.
\vspace{0.2cm}
\item A dollar is simply a claim to \textbf{...another dollar!}
\vspace{0.2cm}
\item ``\$1'' represents one unit of \emph{central bank (CB) liabilities}.
\vspace{0.2cm}
\item The CB can create such liabilities \textbf{at will}, subject only to its policy objectives.
\end{itemize}
\end{frame}
\begin{frame}{U.S. Dollar Today}
\centering
\includegraphics[width=0.7\linewidth]{Figures/Dollar.jpg}\\[0.4cm]
\end{frame}
\begin{frame}{British Pound Today}
\centering
\includegraphics[height=0.78\textheight,keepaspectratio]{Figures/Pounds.jpg}\\[0.1cm]
{\scriptsize Printed statement: ``Bank of England. I promise to pay the bearer on demand the sum of five pounds.''}
\end{frame}
\begin{frame}{Three Properties of Currency}
\begin{enumerate}
\item \textbf{Unit of account} — the numéraire for prices and contracts.
\item \textbf{Medium of exchange} — the means of payment in transactions.
\item \textbf{Store of value} — maintains its value across time and contingencies (i.e., keeps its promises).
\end{enumerate}
\vspace{0.6em}
\textbf{Remarks}
\begin{itemize}
\item The \emph{unit of account} is not an essential property of currency.
\item In medieval times, the unit of account was often an \emph{imaginary unit} that did not circulate physically.
\item The \emph{store-of-value} property should not be confused with purchasing power:
\begin{itemize}
\item A gold coin guaranteed its \textbf{intrinsic metal content}, not its purchasing power.
\item A modern dollar banknote maintains its \textbf{nominal dollar value} over time and is a perfect store of value.
\end{itemize}
\end{itemize}
\end{frame}
\begin{frame}{Money}
\begin{itemize}
\item \textbf{Money} consists of claims on currency that share its key properties — being a \textbf{medium of exchange} and a \textbf{store of value} — to varying degrees.
\vspace{0.3cm}
\item \textbf{Currency is money}, but \textbf{money is not necessarily currency.}
\vspace{0.3cm}
\item A deposit at a commercial bank is not currency, but it is a \textbf{claim on currency}.
It functions as money because it is used as a medium of exchange and serves as a store of value — as long as the issuer (the bank) can honor redemption.
For the issuer, however, redeeming deposits is not as trivial as it is for the central bank.
\end{itemize}
\vspace{0.4em}
\end{frame}
% ======================================
\section{Model}
% ======================================
% -----------------------------
\begin{frame}{Model Overview}
\textbf{Economic Setting}
\begin{itemize}
\item Infinite-horizon, closed economy with perfect foresight
\item Single consumption good $C$ with constant endowment $Y$
\end{itemize}
\textbf{Agents}
\begin{itemize}
\item Representative consumer
\item Treasury
\item Central Bank (CB)
\end{itemize}
\textbf{One Currency = CB's liabilities}
\begin{itemize}
\item Cash $M_t$
\item Reserves $X_t$
\end{itemize}
\end{frame}
% -----------------------------
\begin{frame}{Representative Consumer: Preferences}
\textbf{Intertemporal Utility}
\begin{equation}
\sum_{t=t_0}^{\infty} \beta^{t-t_0} \, U(C_t),
\label{eq: utility}
\end{equation}
where $\beta$ with $0<\beta<1$ is the subjective discount factor in preferences.
\vspace{0.5cm}
\textbf{Properties of $U(C_t)$}
\begin{itemize}
\item $U'(C_t) > 0$
\item $U''(C_t) < 0$
\end{itemize}
\end{frame}
\begin{frame}[label=orig_budget]{Budget Constraint}
\textbf{Budget Constraint at time $t$}
\begin{equation}
\frac{B_t}{1+i_t} + \frac{X_t}{1+i_t^X} + M_t + P_t C_t + T_t
= B_{t-1} + X_{t-1} + M_{t-1} + P_t Y.
\label{eq: budget}
\end{equation}
\textbf{Where}
\begin{itemize}
\item $B_t$: default-free one-period bond (unit face value), discounted at nominal rate $i_t$
\item $X_t$: CB reserves, paying $i_t^X$
\item $M_t$: cash (zero interest)
\item $P_t$: price of consumption good
\item $T_t$: lump-sum taxes (negative = transfers)
\item $Y$: constant endowment of goods
\end{itemize}
\textbf{Portfolio constraints}
\begin{itemize}
\item Bonds: $B_t$ can be held as asset $(>0)$ or issued as debt $(<0)$
\item Cash and reserves: $M_t \ge 0$, $X_t \ge 0 \ \forall \ t \ge t_0$
\end{itemize}
\end{frame}
\begin{frame}{Transmission Mechanism of the Policy Rate}
\begin{itemize}
\item The CB sets the interest rate on reserves, denoted by $i_t^X$.
\item The CB supplies a positive amount of reserves: $X_t > 0$.
\item Bonds $B_t$ and reserves $X_t$ are both default-free and have identical payoffs.
\end{itemize}
\begin{block}{No-Arbitrage Condition}
Since reserves are in \textbf{positive supply}, no-arbitrage implies that the \textbf{market} interest rate on default-free securities must equal the interest rate on reserves:
\[
i_t = i_t^X.
\]
\textbf{Key implication:} By choosing $i_t^X$—the interest rate on its liabilities, which are default-free by definition of currency—the CB effectively determines the short-term interest rate on any other default-free security.
\end{block}
\begin{itemize}
\item From now on, $i_t$ denotes the policy rate.
\end{itemize}
\end{frame}
\begin{frame}{Cashless Equilibrium and the Zero Lower Bound}
\begin{itemize}
\item From the budget constraint \eqref{eq: budget}, cash and bonds are \textbf{perfect substitutes} as media of exchange.
\item Bonds pay a non-negative interest rate, while cash yields zero.
\item It follows, when $i_t>0$, bonds dominate cash, and money demand is zero.
\item The existence of cash implies the \textbf{zero lower bound (ZLB)}:
\[
i_t \ge 0.
\]
\item \textit{Proof by contradiction:}
If $i_t<0$, consumers could borrow ($B_t<0$), invest in cash, pay back debt, and earn a profit with certainty.
\end{itemize}
\end{frame}
\begin{frame}{Cashless Equilibrium and the Zero Lower Bound}
\begin{block}{Results}
\begin{enumerate}
\item The option to hold cash sets a zero lower bound on the nominal interest rate: $i_t \geq 0$.
\item In equilibrium:
\[
M_t = 0 \quad \forall\, t \ge t_0,
\]
unless $i_t = 0$.
\end{enumerate}
\end{block}
\begin{itemize}
\item From now on, we assume a \textbf{cashless equilibrium}:
\[
M_t = 0 \quad \text{for all } t \ge t_0.
\]
\end{itemize}
\end{frame}
\begin{frame}{Borrowing Limit}
\begin{itemize}
\item Consumers cannot borrow indefinitely (i.e.\ hold a negative $B_{t-1}$ forever).
\item Moreover, their debt—carrying a default-free interest rate $i_t$—must be repaid with certainty. Debt must be backed by the present discounted value (PDV) of future net surpluses.
\end{itemize}
\noindent\textbf{Nominal borrowing limit}
\begin{equation}
\underbrace{-\,B_{t-1}}_{\text{\scriptsize debt}}
\;\le\;
\underbrace{X_{t-1}}_{\text{\scriptsize assets}}
+\;
\underbrace{\sum_{j=0}^{\infty}
\tilde{R}_{t,t+j}\big(P_{t+j}Y_{t+j}-T_{t+j}\big)}_{\text{\scriptsize present discounted value of net income}}
\;<\;\infty,
\label{eq:nom_borrowing}
\end{equation}
\hspace{0.6cm}\textit{where} $\tilde{R}_{t,t+j}$ is the nominal discount factor from period $t+j$ with respect to time $t$:
\vspace{-0.3cm}
\[
\tilde{R}_{t,t+j}
= \prod_{i=1}^{j} \frac{1}{1 + i_{t+i-1}},
\qquad
\tilde{R}_{t,t} \equiv 1,
\qquad
j \ge 1.
\label{eq:nom_discount_fac}
\]
\end{frame}
\begin{frame}{Borrowing Limit in Real Terms}
\begin{itemize}
\item The nominal borrowing limit \eqref{eq:nom_borrowing} can be expressed in real terms:
\end{itemize}
\vspace{0.25cm}
\noindent\textbf{Real borrowing limit}
\begin{equation}
-\,\frac{B_{t-1}}{P_t} \;\le\; \frac{X_{t-1}}{P_t}
+ \sum_{j=0}^{\infty} R_{t,t+j} \left( Y - \frac{T_{t+j}}{P_{t+j}} \right)
< \infty,
\label{eq:real_borrowing}
\end{equation}
\hspace{0.65cm} where $R_{t,t+j}$ is the real discount factor from $t+j$ w.r.t. time $t$.
\vspace{0.25cm}
\noindent\textbf{Real discount factor}
\[
R_{t,t+j} = \prod_{i=1}^{j} \frac{1}{1 + r_{t+i-1}},
\quad R_{t,t} \equiv 1,
\quad j \ge 1.
\label{eq:real_discount_fac}
\]
\begin{itemize} \item \textbf{Note:} The real interest rate $r$ is defined as $1+r_t \equiv (1+i_t)\frac{P_t}{P_{t+1}}$. \end{itemize}
\end{frame}
\begin{frame}[label=borrowing]{Intertemporal Budget Constraint}
\begin{itemize}
\item The borrowing limit ~(\ref{eq:real_borrowing}) is \textbf{equivalent} to the household’s intertemporal budget constraint, using the flow budget constraint (\ref{eq: budget}).
\end{itemize}
\vspace{0.25cm}
\noindent\textbf{Intertemporal Budget Constraint}
\begin{equation}
\sum_{t=t_{0}}^{\infty} R_{t_{0},t}\,C_{t}
\;\leq\;
\frac{B_{t_{0}-1}+X_{t_{0}-1}}{P_{t_{0}}}
+\sum_{t=t_{0}}^{\infty} R_{t_{0},t}\!\left(Y - \frac{T_{t}}{P_{t}}\right).
\label{eq:borrowing}
\end{equation}
\begin{itemize}
\item The PDV of consumption cannot exceed:
\begin{itemize}
\item the initial real value of financial assets, and
\item the PDV of real net income.
\end{itemize}
\end{itemize}
\vspace{0.3cm}
\begin{center}
\hyperlink{borrowing_proof}{\beamerbutton{See Proof in Appendix}}
\end{center}
\end{frame}
\begin{frame}[label=limit]{Asset Limit Condition}
\begin{itemize}
\item Constraints \eqref{eq:real_borrowing} or \eqref{eq:borrowing} can be equivalently expressed, using the flow budget constraint (\ref{eq: budget}), as an asset limit constraint.
\end{itemize}
\vspace{0.25cm}
\noindent\textbf{ Asset Limit Constraint}
\begin{equation}
\lim_{t\to \infty} \left\{ R_{t_0,t} \left( \frac{B_{t-1}+X_{t-1}}{P_t} \right) \right\} \ge 0. \label{Blimit}
\end{equation}
\begin{itemize}
\item This condition requires that the discounted value of the household’s asset holdings remain non-negative in the limit.
\end{itemize}
\vspace{0.3cm}
\begin{center}
\hyperlink{limit_proof}{\beamerbutton{See Proof in Appendix}}
\end{center}
\end{frame}
\begin{frame}[label=euler]{Consumer Optimality: Euler Equation}
\begin{itemize}
\item The consumer’s intertemporal optimization problem yields the \textbf{Euler equation}.
\end{itemize}
\vspace{0.3cm}
\noindent\textbf{Euler Equation}
\begin{equation}
\underbrace{U_c(C_t)}_{\text{\scriptsize marginal utility of consumption}}
=
\underbrace{\beta\,(1+r_t)\,U_c(C_{t+1})}_{\text{\scriptsize marginal utility of saving}},
\label{eq:euler}
\end{equation}
\hspace{0.75cm}where $U_c(C_t)$ denotes the marginal utility of consumption at time~$t$.
\vspace{0.2cm}
\begin{itemize}
\item At the optimum, the marginal utility of consuming one unit today equals the marginal utility of saving that unit for next period.
\end{itemize}
\vspace{0.25cm}
\begin{center}
\hyperlink{euler_proof}{\beamerbutton{See Proof in Appendix}}
\end{center}
\end{frame}
\begin{frame}{Consumer Optimality: IBC or Transversality Condition}
\begin{itemize}
\item At the optimum, consumers exhaust all resources, i.e., the intertemporal budget constraint holds with equality:
\end{itemize}
\vspace{0.25cm}
\textbf{Intertemporal Budget Constraint}
\begin{equation}
\sum_{t=t_0}^{\infty} R_{t_0,t} C_t =
\frac{B_{t_0-1}+X_{t_0-1}}{P_{t_0}} +
\sum_{t=t_0}^{\infty} R_{t_0,t} \left( Y_t - \frac{T_t}{P_t} \right),
\label{eq: IBCCE}
\end{equation}
\vspace{0.25cm}
\hspace{0.7cm} or, equivalently, the asset limit condition \eqref{Blimit} holds with equality:
\vspace{0.25cm}
\textbf{Transversality Condition}
\begin{equation}
\lim_{t \to \infty} R_{t_0,t} \frac{B_{t-1}+X_{t-1}}{P_t} = 0.
\label{eq: Trans}
\end{equation}
\end{frame}
\begin{frame}{Central Bank}
\begin{itemize}
\item In this cashless economy, the CB:
\vspace{0.25cm}
\begin{itemize}
\item \textbf{issues CB reserves} $X^{C}$ (the only liability)
\vspace{0.25cm}
\item \textbf{holds assets} $B^{C}$, private or treasury bonds
\vspace{0.25cm}
\item \textbf{makes transfers} $T^{C}$ to the treasury (positive = remittances, negative = subsidies)
\end{itemize}
\end{itemize}
\vspace{0.5cm}
\noindent\textbf{CB Flow Budget Constraint}
\begin{equation}
\frac{B_{t}^{C}}{1+i_{t}}-\frac{X_{t}^{C}}{1+i_{t}} \;=\; B_{t-1}^{C}-X_{t-1}^{C}- T_{t}^{C} .
\label{CBBC1}
\end{equation}
\end{frame}
\begin{frame}{Central Bank: Key Properties}
\begin{itemize}
\item Reserves $X^{C}$ are claims on themselves; they can \textbf{always} be paid, even if $B_t^C = 0$
$\longrightarrow$ \textbf{No} solvency condition is required on $X^{C}$.
\vspace{0.25cm}
\item Given $X_{t-1}^C$, the CB can freely choose both the quantity of reserves $X_t^C$ and the interest rate $i_t$.
\vspace{0.25cm}
\item By choosing the transfers policy $T_t^C$, asset holdings $B_t^C$ adjust according to the flow budget constraint \eqref{CBBC1}.
\end{itemize}
\end{frame}
\begin{frame}{Treasury Budget Constraint}
\begin{itemize}
\item The Treasury issues debt. At time $t$, it services its outstanding obligations $B_{t-1}^{F}$ using:
\vspace{-0.2cm}
\begin{itemize}
\item Lump-sum taxes $T_t$ (net of transfers)
\item CB remittances $T_t^C$
\item Issuance of new debt $B_t^F$
\end{itemize}
\end{itemize}
\vspace{0.25cm}
\noindent\textbf{Treasury Budget Constraint}
\begin{equation}
B_{t-1}^{F} = T_t + T_t^C + \frac{B_t^F}{1+i_t}.
\label{BudgetT}
\end{equation}
\begin{itemize}
\item $B_{t-1}^{F}$ are claims on currency, \textbf{not} currency itself. They are not, by definition, default-free!
\vspace{0.25cm}
\item To be default-free, Treasury debt must satisfy a solvency constraint.
\end{itemize}
\end{frame}
\begin{frame}{Treasury Solvency and No-Ponzi Conditions}
\begin{itemize}
\item Treasury debt should be repaid with certainty to be default-free (and paying the default-free rate $i$):
\begin{equation*}
\underbrace{B_{t-1}^{F}}_{\text{\scriptsize Treasury debt}}
\;\le\;
\underbrace{\sum_{j=0}^{\infty}
\tilde{R}_{t,t+j}\,\big(T_{t+j}+T_{t+j}^{C}\big)}_{\text{\scriptsize PDV of the Treasury's resources}}
\;<\;\infty,
\end{equation*}
\noindent or in \textbf{real terms:}
\begin{equation} \frac{B_{t-1}^{F}}{P_t} \le \sum_{j=0}^{\infty} R_{t,t+j}\,\left(\frac{T_{t+j}}{P_{t+j}} + \frac{T_{t+j}^C}{P_{t+j}}\right) < \infty, \label{DebtBB} \end{equation}
\noindent or, equivalently, as a \textbf{no-Ponzi condition:}
\begin{equation} \lim_{t\to\infty} R_{t_0,t} \frac{B_{t-1}^F}{P_t} \le 0. \label{Limit_Debt_T} \end{equation}
\end{itemize}
\end{frame}
\begin{frame}{Treasury - Implications for the Model}
\begin{itemize}
\item The treasury cannot accumulate debt indefinitely; it must be covered by taxes and CB remittances in present value.
\item If taxes are reduced in certain periods, they must increase in later periods to maintain solvency.
\item For the subsequent analysis, we assume that condition \eqref{DebtBB} or, equivalently, \eqref{Limit_Debt_T} holds with equality.
\item The equality assumption is supported by political-economic considerations (excessive taxation is costly) or by the rationale that the treasury does not intend to accumulate a positive long-term asset position.
\end{itemize}
\end{frame}
\begin{frame}[label=market]{Market Clearing Conditions}
\begin{itemize}
\item Debt issued by the government ($B^F$) is held either by the CB ($B^C$) or the consumer ($B$). CB reserves ($X^C$) are held only by the consumer ($X$).
\end{itemize}
\vspace{0.25cm}
\noindent\textbf{Asset Market Clearing}
\begin{equation}
B_t^{F} = B_t^{C}+B_t,
\label{eq: Bonds}
\end{equation}
\begin{equation}
X_t^{C} = X_t.
\label{eq: reserves}
\end{equation}
\vspace{0.25cm}
\noindent\textbf{Goods Market Clearing}
\[
C_t=Y.
\]
\begin{itemize}
\item Consumption equals output, consistent with a closed economy with no investment and no government purchases.
\end{itemize}
\vspace{0.3cm}
\begin{center}
\hyperlink{gdp_proof}{\beamerbutton{See Proof in Appendix}}
\end{center}
\end{frame}
\begin{frame}{Equilibrium Condition: Fisher Equation}
\small
\begin{itemize}
\item In equilibrium, goods-market clearing implies
\[
C_t = Y.
\]
\item Substituting $C_t=Y$ into the Euler equation~\eqref{eq:euler} gives the Fisher equation.
\end{itemize}
\vspace{0.2cm}
\noindent\textbf{Fisher Equation}
\begin{equation}
\underbrace{1+i_t}_{\text{\scriptsize gross nominal interest rate}}
\;=\;
\underbrace{\frac{1}{\beta}}_{\text{\scriptsize gross real interest rate}}
\;\underbrace{\frac{P_{t+1}}{P_t}}_{\text{\scriptsize gross inflation}},
\label{eq: Fisher}
\end{equation}
\begin{itemize}
\item This condition links the nominal interest rate to the real interest rate and expected inflation.
\item Since the endowment is constant, the gross real interest rate is constant and equal to $1/\beta$.
\end{itemize}
\end{frame}
\begin{frame}{Equilibrium Condition: Intertemporal Resource Constraint}
\small
\begin{itemize}
\item Using $C_t=Y$ together with the Fisher equation~\eqref{eq: Fisher}, the household intertemporal budget constraint~\eqref{eq: IBCCE} becomes:
\end{itemize}
\vspace{0.2cm}
\noindent\textbf{Intertemporal Resource Constraint}
\begin{equation}
\frac{B_{t_0-1}+X_{t_0-1}}{P_{t_0}}
=
\sum_{t=t_0}^{\infty}\beta^{\,t-t_0}\frac{T_t}{P_t}.
\label{eq: IBCTT}
\end{equation}
\begin{itemize}
\item \textbf{Left-hand side:} the real value of government liabilities held by the private sector at time $t_0$.
\item \textbf{Right-hand side:} the present discounted value of real taxes.
\item This is \textbf{not} a solvency condition for the government as a whole; it is an \textbf{equilibrium condition}.
\end{itemize}
\end{frame}
\begin{frame}{Equilibrium Condition: Treasury Solvency}
\small
\begin{itemize}
\item The Treasury, unlike the central bank, cannot issue claims that are redeemable in units of themselves.
\item Therefore, Treasury debt must satisfy its own solvency condition.
\item Using~\eqref{DebtBB} with equality and the Fisher equation~\eqref{eq: Fisher}, we obtain:
\end{itemize}
\vspace{0.2cm}
\noindent\textbf{Treasury Solvency Condition}
\begin{equation}
\frac{B_{t_0-1}^{F}}{P_{t_0}}
=
\sum_{t=t_0}^{\infty}\beta^{\,t-t_0}
\left(\frac{T_t}{P_t}+\frac{T_t^{C}}{P_t}\right).
\label{eq: TreasurySolvency}
\end{equation}
\begin{itemize}
\item Treasury solvency requires the real value of outstanding debt to be backed by the present discounted value of real taxes and CB remittances.
\end{itemize}
\end{frame}
\begin{frame}{Equilibrium Conditions: Government Budget Constraints}
\small
\begin{itemize}
\item In equilibrium, the central bank and the Treasury must satisfy their respective flow budget constraints period by period.
\end{itemize}
\vspace{0.2cm}
\noindent\textbf{Central Bank Budget Constraint}
\begin{equation}
\frac{X_t-B_t^{C}}{1+i_t}
=
X_{t-1}-B_{t-1}^{C}+T_t^{C}.
\label{eq: FlowG}
\end{equation}
\vspace{0.3cm}
\noindent\textbf{Treasury Budget Constraint}
\begin{equation}
\frac{B_t^{F}}{1+i_t}
=
B_{t-1}^{F}-T_t-T_t^{C}.
\label{eq: TBC}
\end{equation}
\begin{itemize}
\item These equations describe how liabilities, assets, taxes, and remittances evolve over time.
\end{itemize}
\end{frame}
\begin{frame}{Competitive Equilibrium: Definition}
\small
Given initial conditions $B_{t_0-1}^{C}, B_{t_0-1}^{F}, X_{t_0-1}$, a \textbf{competitive equilibrium} is a set of sequences
\[
\{P_t,i_t,X_t,B_t^{C},T_t^{C},B_t^{F},T_t,B_t\}_{t=t_0}^{\infty},
\]
with
\[
\{P_t,i_t,X_t,B_t^{C}\}_{t=t_0}^{\infty}\ge 0,
\]
such that:
\vspace{0.1cm}
\begin{enumerate}
\item households optimize;
\item the Fisher equation \eqref{eq: Fisher}, the intertemporal resource constraint \eqref{eq: IBCTT}, and the government budget constraints \eqref{eq: FlowG}--\eqref{eq: TBC} hold;
\item markets clear:
\[
B_t^{F}=B_t^{C}+B_t,\qquad X_t^{C}=X_t,\qquad C_t=Y;
\]
\item the tax sequence $\{T_t\}_{t=t_0}^{\infty}$ satisfies Treasury solvency \eqref{eq: TreasurySolvency}, at each point in time, given that Treasury's debt follows (\ref{eq: TBC}).
\end{enumerate}
\end{frame}
\begin{frame}{Government Policy and Degrees of Freedom}
\small
\begin{itemize}
\item The equilibrium characterization reveals \textbf{four policy degrees of freedom}.
\vspace{0.2cm}
\item The central bank can choose the sequences
\[
\{i_t,\;X_t,\;T_t^{C}\}_{t=t_0}^{\infty},
\]
while its asset holdings adjust through~\eqref{eq: FlowG}.
\vspace{0.2cm}
\item Given the paths of prices and CB remittances, the Treasury chooses the tax sequence
\[
\{T_t\}_{t=t_0}^{\infty}
\]
that satisfies the solvency condition~\eqref{eq: TreasurySolvency}.
\end{itemize}
\vspace{0.2cm}
\textbf{Implication:}
Without a fully specified monetary and fiscal policy, the model does not determine a unique equilibrium price level.
\end{frame}
\begin{frame}{Monetary Policy Insights}
\textbf{Key Insights:}
\begin{itemize}
\item The economy does not have an inherent tendency to select a unique price level without the CB specifying policy sequences $\{i_t, X_t, T_t^C\}_{t=t_0}^\infty$.
\vspace{0.3cm}
\item Forward guidance is important: policymakers must communicate both current and future paths of policy to eventually be able to determine equilibrium.
\vspace{0.3cm}
\item Balance-sheet policies matter: specifying interest rates alone is not sufficient to uniquely determine the price level (as shown next).
\end{itemize}
\end{frame}
% ======================================
\section{Determining the Value of the Currency}
% ======================================
\begin{frame}{Value of the Currency: Limits of Interest-Rate Policy}
\begin{itemize}
\item We show that interest-rate policy alone cannot determine the currency's value.
\item Using the Fisher equation (\ref{eq: Fisher}), if the CB pegs $i_t = i$, only the rate of price changes is determined, i.e. $\frac{P_{t+1}}{P_{t}}$, not the price level itself.
\item This indeterminacy result also holds with active policies reacting to deviations from a target $\bar{P}$ as the following:
\end{itemize}
\textbf{Policy Rule}
\begin{equation} \label{eq: int_rule}
1 + i_t = \max \left\{ \frac{1}{\beta} \left( \frac{P_t}{\bar{P}} \right)^\phi, 1 \right\}, \quad \phi \ge 0.
\end{equation}
\begin{itemize}
\item In \eqref{eq: int_rule}, the interest rate is equal to the real rate $1/\beta$ and reacts with a coefficient $\phi$ to the ratio of the current price level with respect to the target $\bar{P}$, unless the zero lower bound binds.
\end{itemize}
\end{frame}
\begin{frame}{Price-Level Indeterminacy}
\begin{itemize}
\item Combining the Fisher equation (\ref{eq: Fisher}) and the interest-rate rule \eqref{eq: int_rule} gives a non-linear difference equation for the price level:
\begin{equation} \label{eq: price_level_rule}
\frac{P_{t+1}}{P_t} = \max \left\{ \left(\frac{P_t}{\bar{P}} \right)^\phi, \beta \right\}.
\end{equation}
\item For $\phi > 0$, infinite solutions exist, all indexed by $P_{t_0} \in (0,\infty)$ :
\begin{itemize}
\item Stationary solution exists only if $P_{t_0} = \bar{P}$
\item $P_{t_0} > \bar{P} \Rightarrow $ inflationary path;
$P_{t_0} < \bar{P}\Rightarrow $ deflationary path
\end{itemize}
\item For $\phi = 0$, infinite stationary solutions exist, all indexed by $P_{t_0} \in (0,\infty)$
\item \textbf{Conclusion:} Interest-rate rules, even Taylor-type rules, cannot uniquely determine the price level without specifying appropriately additional policy instruments (\textit{the other degrees of freedom}).
\end{itemize}
\end{frame}
\begin{frame}{Phase Diagram Illustration}
\centering
% Include the figure if it exists, otherwise display placeholder text
\IfFileExists{Figures/Figure2.png}{%
\includegraphics[height=0.7\textheight,keepaspectratio]{Figures/Figure2.png}%
}{%
\textit{(Insert Figure2.png here)}%
}
\vspace{0.5em}
Phase diagram for $\phi>0$. The stationary solution is $P_t=\bar P$.
If $P_t \le \beta^{1/\phi}\bar P$, the deflation rate is $\beta$ (with $0<\beta<1$).
\end{frame}