You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lectures/intro_supply_demand.md
+17-23Lines changed: 17 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -18,34 +18,26 @@ the main topics of elementary microeconomics.
18
18
19
19
Throughout the lecture, we focus on models with one good and one price.
20
20
21
-
({doc}`Later <supply_demand_multiple_goods>` we will investigate settings with
22
-
many goods.)
21
+
22
+
In a {doc}`subsequent lecture <supply_demand_multiple_goods>` we will investigate settings with
23
+
many goods.
23
24
24
25
Key infrastructure concepts that we'll encounter in this lecture are
25
26
26
27
* inverse demand curves
27
-
* marginal utilities of wealth
28
28
* inverse supply curves
29
29
* consumer surplus
30
30
* producer surplus
31
-
* social welfare as a sum of consumer and producer surpluses
32
-
* competitive equilibrium
33
-
34
-
35
-
We will provide a version of the [first fundamental welfare theorem](https://en.wikipedia.org/wiki/Fundamental_theorems_of_welfare_economics), which was formulated by
31
+
* social welfare as the sum of consumer and producer surpluses
32
+
* relationship between equilibrium quantity and social welfare optimum
We'll also assume affine inverse supply and demand functions when we study models with multiple consumption goods in our {doc}`subsequent lecture <supply_demand_multiple_goods>`.
48
39
40
+
We do this in order to simplify the exposition and enable us to use just a few tools from linear algebra, namely, matrix multiplication and matrix inversion.
49
41
50
42
In our exposition we will use the following imports.
51
43
@@ -98,6 +90,8 @@ class Market:
98
90
99
91
```
100
92
93
+
94
+
101
95
Let's create an instance.
102
96
103
97
```{code-cell} ipython3
@@ -128,7 +122,7 @@ ax.set_ylabel('price')
128
122
plt.show()
129
123
```
130
124
131
-
125
+
In the above graph, an **equilibrium** price, quantity pair occurs at the intersection of the supply and demand curves.
132
126
133
127
### Consumer surplus
134
128
@@ -175,12 +169,12 @@ plt.show()
175
169
```
176
170
177
171
178
-
Consumer surplus gives a measure of total consumer welfare at quantity $q$.
172
+
Consumer surplus provides a measure of total consumer welfare at quantity $q$.
179
173
180
-
The idea is that the inverse demand curve $d_0 - d_1 q$ shows willingness to
181
-
pay at a given quantity $q$.
174
+
The idea is that the inverse demand curve $d_0 - d_1 q$ shows a consumer's willingness to
175
+
pay for an additional increment of the good at a given quantity $q$.
182
176
183
-
The difference between willingness to pay and the actual price is the surplus.
177
+
The difference between willingness to pay and the actual price is consumer surplus.
184
178
185
179
The value $S_c(q)$ is the "sum" (i.e., integral) of these surpluses when the total
186
180
quantity purchased is $q$ and the purchase price is $p$.
@@ -245,7 +239,7 @@ The idea is similar to that of consumer surplus.
245
239
The inverse supply curve $s_0 + s_1 q$ shows the price at which producers are
246
240
prepared to sell, given quantity $q$.
247
241
248
-
The difference between willingness to sell and the actual price is the surplus.
242
+
The difference between willingness to sell and the actual price is producer surplus.
249
243
250
244
The value $S_p(q)$ is the integral of these surpluses.
Copy file name to clipboardExpand all lines: lectures/supply_demand_multiple_goods.md
+29-1Lines changed: 29 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -17,16 +17,44 @@ kernelspec:
17
17
## Overview
18
18
19
19
In a {doc}`previous lecture <intro_supply_demand>` we studied supply, demand
20
-
and welfare in a market with just one good.
20
+
and welfare in a market with a single consumption good.
21
21
22
22
In this lecture, we study a setting with $n$ goods and $n$ corresponding prices.
23
23
24
+
Key infrastructure concepts that we'll encounter in this lecture are
25
+
26
+
* inverse demand curves
27
+
* marginal utilities of wealth
28
+
* inverse supply curves
29
+
* consumer surplus
30
+
* producer surplus
31
+
* social welfare as a sum of consumer and producer surpluses
32
+
* competitive equilibrium
33
+
34
+
35
+
We will provide a version of the [first fundamental welfare theorem](https://en.wikipedia.org/wiki/Fundamental_theorems_of_welfare_economics), which was formulated by
***first welfare theorem:** for a given distribution of wealth among consumers, a competitive equilibrium allocation of goods solves a social planning problem.
27
53
28
54
***second welfare theorem:** An allocation of goods to consumers that solves a social planning problem can be supported by a competitive equilibrium with an appropriate initial distribution of wealth.
29
55
56
+
As usual, we start by importing some Python modules.
0 commit comments