From c05db95a8ee05206d6ad08440b6ed9597c36419a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Alejandro=20Garc=C3=ADa=20Hern=C3=A1ndez?= <54967248+dangarciahe@users.noreply.github.com> Date: Thu, 16 May 2024 19:35:52 -0500 Subject: [PATCH] Fix a small typo in line 777 Fixing typo in line 777. It incorrectly called the supply vector as q^d, instead of q^s --- lectures/linear_equations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/linear_equations.md b/lectures/linear_equations.md index 5f364682..dc4469b6 100644 --- a/lectures/linear_equations.md +++ b/lectures/linear_equations.md @@ -774,7 +774,7 @@ In general, we can write the demand equation as $q^d = Dp + h$, where Similarly, we can write the supply equation as $q^s = Cp + e$, where -* $q^d$ is an $n \times 1$ vector of supply quantities for the same goods. +* $q^s$ is an $n \times 1$ vector of supply quantities for the same goods. * $C$ is an $n \times n$ "coefficient" matrix. * $e$ is an $n \times 1$ vector of constant values.