ECO102 Lecture 03

Pre-Lecture

ECO102 - Week 03.pdf
ECO102 Pre-Lecture 03 Summary

Lecture

ECO102 - Week 03.pdf

\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
                                                                                                                                                                          \begin{document}
                                                                                                                                                                          % --- DIAGRAM 1: GOVERNMENT BUDGET BALANCE ---
\begin{tikzpicture}[scale=0.8, every node/.style={font=\small}]
    % Axes
    \draw[->, thick] (0,0) -- (12,0) node[right] {$Y$ (Income)};                                                                                                              \draw[->, thick] (0,0) -- (0,8) node[above] {$B$ (Budget Balance)};

    % Budget Lines                                                                                                                                                            % B = 6 + 0.1Y -> (0,3) to (10,8) scaled
    \draw[domain=0:10, smooth, variable=\x, blue, thick] plot ({\x}, {3 + 0.2*\x});
    \node[blue, right] at (10,5.2) {$B = 6 + 0.1Y$};

    % B1 = 4 + 0.1Y -> (0,2) to (10,7) scaled
    \draw[domain=0:10, smooth, variable=\x, red, thick] plot ({\x}, {2 + 0.2*\x});                                                                                            \node[red, right] at (10,4.2) {$B_1 = 4 + 0.1Y$};

    % Equilibrium Marker
    \draw[dashed, gray] (8,0) -- (8,4.6);
    \node[below] at (8,0) {$100$};
    \filldraw[black] (8,4.6) circle (2pt) node[anchor=south east] {$(100, 16)$};

    % Intercepts
    \node[blue, left] at (0,3) {$6$};
    \node[red, left] at (0,2) {$4$};

    \node[above, font=\bfseries] at (6,8) {Government Budget Modelling};
\end{tikzpicture}

\vspace{1cm}

% --- DIAGRAM 2: THE KEYNESIAN CROSS (AE MODEL) ---
\begin{tikzpicture}[scale=0.8, every node/.style={font=\small}]
    % Axes
    \draw[->, thick] (0,0) -- (10,0) node[right] {$Y$};
    \draw[->, thick] (0,0) -- (0,10) node[above] {$AE$};

    % 45 Degree Line
    \draw[thick, gray] (0,0) -- (9,9) node[right] {$AE = Y$};

    % AE Line: AE = 20 + 0.8Y (Scaled: Intercept 2, Slope 0.5 for visual fit)
    \draw[domain=0:9, smooth, variable=\x, blue, ultra thick] plot ({\x}, {2 + 0.6*\x});
    \node[blue, right] at (9,7.4) {$AE = 20 + 0.8Y$};

    % Equilibrium Point
    \draw[dashed, darkgray] (5,0) -- (5,5);
    \draw[dashed, darkgray] (0,5) -- (5,5);
    \filldraw[red] (5,5) circle (2.5pt);
    \node[below] at (5,0) {$100$};
    \node[left] at (0,5) {$100$};

    \node[above, font=\bfseries] at (5,10) {Goods Market Equilibrium};
\end{tikzpicture}

\vspace{1cm}

% --- DIAGRAM 3: NET EXPORTS (TRADE BALANCE) ---
\begin{tikzpicture}[scale=0.8, every node/.style={font=\small}]
    % Axes
    \draw[->, thick] (0,0) -- (10,0) node[right] {$Y$};
    \draw[->, thick] (0,-2) -- (0,3) node[above] {$NX$};

    % NX Line: NX = 1 - 0.01Y (Scaled)
    \draw[domain=0:9, smooth, variable=\x, teal, thick] plot ({\x}, {1.5 - 0.15*\x});

    % Zero point (Y=100)
    \filldraw[black] (10/1,0) circle (0pt); % Reference
    \node[below] at (10,0) {$100$};

    % Labels
    \node[teal, above right] at (1,1.35) {Surplus ($NX > 0$)};
    \node[teal, below right] at (7,-0.5) {Deficit ($NX < 0$)};

    \node[above, font=\bfseries] at (5,3) {Net Exports and Automatic Stabilisation};
\end{tikzpicture}

\vspace{1cm}

% --- DIAGRAM 4: CAPITAL MARKET EQUILIBRIUM ---
\begin{tikzpicture}[scale=0.8, every node/.style={font=\small}]
    % Axes
    \draw[->, thick] (0,0) -- (10,0) node[right] {$Y$};
    \draw[->, thick] (0,0) -- (0,8) node[above] {$NS, NAF$};

    % NS = 0.19Y - 9 (Scaled for visibility)
    \draw[domain=2:9, smooth, variable=\x, orange, thick] plot ({\x}, {-1 + 0.6*\x});
    \node[orange, right] at (9,4.4) {$NS (S+B)$};

    % NAF = 11 - 0.01Y (Scaled for visibility)
    \draw[domain=0:9, smooth, variable=\x, purple, thick] plot ({\x}, {5 - 0.1*\x});
    \node[purple, right] at (9,4.1) {$NAF (I+NX)$};

    % Intersection at Y=100 (Scaled to x=6 approx)
    \draw[dashed, gray] (6,0) -- (6,2.6);
    \filldraw[black] (6,2.6) circle (2pt);
    \node[below] at (6,0) {$100$};

    \node[above, font=\bfseries] at (5,8) {Capital Market Equilibrium};
\end{tikzpicture}

\end{document}