-
Introduction 4
-
Lecture1.1
-
Lecture1.2
-
Lecture1.3
-
Lecture1.4
-
-
Production Possibilities Frontier 4
-
Lecture2.1
-
Lecture2.2
-
Lecture2.3
-
Lecture2.4
-
-
Trade 3
-
Lecture3.1
-
Lecture3.2
-
Lecture3.3
-
-
Demand 4
-
Lecture4.1
-
Lecture4.2
-
Lecture4.3
-
Lecture4.4
-
-
Supply 2
-
Lecture5.1
-
Lecture5.2
-
-
Equilibrium 4
-
Lecture6.1
-
Lecture6.2
-
Lecture6.3
-
Lecture6.4
-
-
Curve Movements 4
-
Lecture7.1
-
Lecture7.2
-
Lecture7.3
-
Lecture7.4
-
-
Elasticity and Revenue 5
-
Lecture8.1
-
Lecture8.2
-
Lecture8.3
-
Lecture8.4
-
Lecture8.5
-
-
Taxes 7
-
Lecture9.1
-
Lecture9.2
-
Lecture9.3
-
Lecture9.4
-
Lecture9.5
-
Lecture9.6
-
Lecture9.7
-
-
Consumer and Producer Surplus 8
-
Lecture10.1
-
Lecture10.2
-
Lecture10.3
-
Lecture10.4
-
Lecture10.5
-
Lecture10.6
-
Lecture10.7
-
Lecture10.8
-
-
Imports and Exports 4
-
Lecture11.1
-
Lecture11.2
-
Lecture11.3
-
Lecture11.4
-
-
Tariffs 2
-
Lecture12.1
-
Lecture12.2
-
Mapping Revenue
Solution
for x in range(1,11):
quantity = DemandEquation.subs(p,x)
elast = abs(elasticity(x,x+1,DemandEquation.subs(p,x),DemandEquation.subs(p,x+1)))
plt.plot(demandQ,prices)
drawRevenue(x,quantity)
print("The elasticity at this point is "+str(elast))
plt.show()
Now let’s take a closer look at how elasticity and revenue are related.
for x in range(1,11):
quantity = DemandEquation.subs(p,x)
elast = abs(elasticity(x,x+1,DemandEquation.subs(p,x),DemandEquation.subs(p,x+1)))
revenue = quantity*x
print("At price "+str(x)+" elasticity is "+str(elast)+" and the revenue is "+str(revenue)+".")
Something interesting to notice is that at the farthest ends (price = 1 and price=10), the elasticity is at its lowest and its highest, and also the revenue is at it’s lowest for both. Let’s graph these.
elast = [abs(elasticity(x,x+1,DemandEquation.subs(p,x),DemandEquation.subs(p,x+1))) for x in range(1,11)]
revenue = [DemandEquation.subs(p,x)*x for x in range(1,11)]
prices = [x for x in range(1,11)]
plt.plot(prices,revenue)
plt.show()
plt.plot(elast,revenue)
plt.show()
This graph shows us the important relationship between elasticity and revenue. When elasticity is unit elastic (equal to 1), we have the highest revenue. Also when elasticity is low, if we increase price we increase revenue. This makes sense because the growth in price is greater than the loss in quantity. When elasticity is high, we benefit from reducing prices because we have higher growth in quantity, which makes up for the loss in price. These apply to all cases of demand, not just this particular one.
Now, a question to consider. Would producers be better off if all of a sudden they could make twice as much product at every level? You might guess that they would be, but it depends on the way supply and demand are.
Challenge
1
= p and Supply
2
= 2*p.