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
This lecture is about some linear models of equilibrium prices and
4
-
quantities, one of the main topics of elementary microeconomics.
5
-
6
-
Our approach is first to offer a scalar version with one good and one price.
3
+
+++
7
4
8
5
## Outline
9
6
7
+
This lecture is about some models of equilibrium prices and quantities, one of
8
+
the main topics of elementary microeconomics.
9
+
10
+
Throughout the lecture, we focus on models with one good and one price.
11
+
12
+
({doc}`Later <supply_demand_multiple_goods>` we will investigate settings with
13
+
many goods.)
14
+
10
15
We shall describe two classic welfare theorems:
11
16
12
17
***first welfare theorem:** for a given a distribution of wealth among consumers, a competitive equilibrium allocation of goods solves a social planning problem.
@@ -23,6 +28,13 @@ Key infrastructure concepts that we'll encounter in this lecture are
23
28
* social welfare as a sum of consumer and producer surpluses
24
29
* competitive equilibrium
25
30
31
+
We will use the following imports.
32
+
33
+
```python
34
+
import numpy as np
35
+
import matplotlib.pyplot as plt
36
+
```
37
+
26
38
## Supply and Demand
27
39
28
40
We study a market for a single good in which buyers and sellers exchange a quantity $q$ for a price $p$.
@@ -41,7 +53,7 @@ $$
41
53
42
54
We call them inverse demand and supply curves because price is on the left side of the equation rather than on the right side as it would be in a direct demand or supply function.
43
55
44
-
56
+
### Surpluses and Welfare
45
57
46
58
We define **consumer surplus** as the area under an inverse demand curve minus $p q$:
47
59
@@ -83,15 +95,20 @@ $$ (eq:old1)
83
95
84
96
Let's remember the quantity $q$ given by equation {eq}`eq:old1` that a social planner would choose to maximize consumer plus producer surplus.
85
97
86
-
We'll compare it to the quantity that emerges in a competitive equilibrium equilibrium that equates
87
-
supply to demand.
98
+
We'll compare it to the quantity that emerges in a competitive equilibrium
99
+
equilibrium that equates supply to demand.
100
+
101
+
+++
102
+
103
+
### Competitive Equilibrium
88
104
89
105
Instead of equating quantities supplied and demanded, we'll can accomplish the same thing by equating demand price to supply price:
90
106
91
107
$$
92
108
p = d_0 - d_1 q = s_0 + s_1 q ,
93
109
$$
94
110
111
+
+++
95
112
96
113
It we solve the equation defined by the second equality in the above line for $q$, we obtain the
97
114
competitive equilibrium quantity; it equals the same $q$ given by equation {eq}`eq:old1`.
@@ -105,15 +122,102 @@ It also brings a useful **competitive equilibrium computation strategy:**
105
122
106
123
* after solving the welfare problem for an optimal quantity, we can read a competitive equilibrium price from either supply price or demand price at the competitive equilibrium quantity
107
124
108
-
Soon we'll derive generalizations of the above demand and supply
109
-
curves from other objects.
125
+
### Generalizations
126
+
127
+
In later lectures, we'll derive generalizations of the above demand and
128
+
supply curves from other objects.
110
129
111
-
Our generalizations will extend the preceding analysis of a market for a single good to the analysis
112
-
of $n$ simultaneous markets in $n$ goods.
130
+
Our generalizations will extend the preceding analysis of a market for a
131
+
single good to the analysis of $n$ simultaneous markets in $n$ goods.
113
132
114
133
In addition
115
134
116
135
* we'll derive **demand curves** from a consumer problem that maximizes a **utility function** subject to a **budget constraint**.
117
136
118
137
* we'll derive **supply curves** from the problem of a producer who is price taker and maximizes his profits minus total costs that are described by a **cost function**.
0 commit comments