Reteaching You 'Supply and Demand' Since You Forgot

min read

2026-08-09 Back to posts

A supply and demand curve chart on a dark background

It's okay if you slept during class. I'm here to provide a refresher on the two curves everyone in your feed misunderstands.

Table of Contents

Reteaching You Supply and Demand Since You Forgot

Since I last tackled the myths surrounding the American labor force, I keep seeing the same arguments every week:

Since none of you have opened an econ 101 textbook since high school, against my better judgment, here’s a refresher.


The Two Lines You Keep Ignoring

Supply and demand is not a viral dance, so please…

Bill Nye: Consider the Following

Below we will make a chart representing supply and demand. Before you fall asleep, I promise this will help you.

The green line represents the quantity sellers are willing to supply at each price, the red represents the quantity buyers are willing to purchase at each price.

The equilibrium is the price where the market clears under “free market” conditions. Good? Let’s code it and find the equilibrium.

import matplotlib.pyplot as plt
import numpy as np

price = np.linspace(0, 10, 100)
supply = price * 900 + 200
demand = 9000 - price * 700

eq_idx = np.argmin(np.abs(supply - demand))
print(f"Equilibrium price: {price[eq_idx]:.2f}")
print(f"Equilibrium quantity: {supply[eq_idx]:.0f}")
Equilibrium price: 5.35
Equilibrium quantity: 5013

Supply and demand curve

Let me explain further, supply goes up as price goes up, because producers like getting paid more.

Demand goes down as price goes up, because you, personally, buy fewer things when they cost more money.

This is under the assumption that you are rational and are capable of performing a cost-benefit analysis1.

Groundbreaking stuff, I know.

The two lines cross at equilibrium. This is the price where the amount people want to buy equals the amount people are willing to sell. This isn’t a conspiracy, it is arithmetic.

Housing affordability is a supply-and-demand problem, and blaming any single group obscures the interaction between constrained supply and increased demand. A lot of problems facing modern society can be explained and analyzed with math. A lot of scary bogeymen are lines on a chart.


Myth: “They Could Just Lower the Price”

No, they couldn’t. Well, they could, but not without consequences you’d also complain about.

If a seller prices below equilibrium, more people want to buy than there are things to sell, and you get a shortage.

Congratulations, you’ve reinvented rent control.

Now your neighbor’s cousin got the apartment because he is sleeping with the landlord’s daughter.

Young Michael Scott

Your neighbor’s cousin

Price floors and price ceilings feel good to legislate and terrible to live under, because they don’t change supply or demand. The tradeoffs are scarcity and misallocation.


Myth: “Housing Prices Are High Because of Greed”

Landlords can certainly be greedy, but like other suppliers, landlords have always wanted to charge as much as possible.2 That part never changes, so it can’t by itself explain why prices went up.

What changed is the supply curve and specifically, how slow and expensive it is to add new housing units.

supply = 4000 + price * 150   # steep: housing barely responds to price
demand_before = 9000 - price * 700
demand_after = 9500 - price * 700   # population growth + investor demand

idx_before = np.argmin(np.abs(supply - demand_before))
idx_after = np.argmin(np.abs(supply - demand_after))
print(f"Old equilibrium price: {price[idx_before]:.2f}")
print(f"New equilibrium price: {price[idx_after]:.2f}")
Old equilibrium price: 5.88
New equilibrium price: 6.47

Inelastic housing supply chart

That’s inelastic supply in action. Housing takes years to build, gets strangled by zoning laws and permitting, and is geographically fixed. Within a reasonable cost, you cannot manufacture more land in downtown Chicago.

When demand shifts right, even a little, the supply curve barely moves and the price does almost all the adjusting instead.

That is not solely greed, that’s math showing a steep line.

Take a look at the state of Texas. An economic powerhouse in its own right, it is also abundant with ‘developable’ land and has fewer zoning restrictions.

Freedom to use real estate space as developers see fit can create lower prices. Surprise, surprise. Texas boasts cheaper than average home prices amongst a booming job market.3

Of course, there are always other factors that affect home prices like taxes, disasters, and geography.


Myth: “Private Investors Are the Whole Problem”

Institutional investors buying single-family homes is a real phenomenon and it does shift the demand curve right, same as any other buyer entering the market.

Treating it as the sole cause of America’s housing issues is lazy because it ignores that the supply curve was already this steep.

Private investment isn’t inherently the villain here, it is demand with more capital. The actual lever to pull on is supply.

Leo pointing

If it were cheap and fast to build housing, an influx of investor demand would be absorbed by new construction rather than bidding up the price.

It’s the difference between a busy restaurant opening another location and the same restaurant having to serve twice as many customers from the same kitchen.

Investor demand is one contributing factor to the housing shortage, but it is interacting with a housing market where supply is heavily constrained.

Closing Thoughts

These curves aren’t going anywhere. They help explain how our world works. Learn to read them.

Enjoy econ? Read my posts about the labor force or nuclear energy economics

Questions or corrections? Email me at nickstambaugh@proton.me

Footnotes

  1. We both know that is not true.

  2. Greed as a constant rather than a variable is a standard economic assumption. See profit maximization.

  3. Now compare this to San Francisco, where restrictive land-use regulations have constrained housing supply and contributed to higher housing costs, which can in turn increase homelessness. That puts additional pressure on social services and taxpayers.

Notes from Nick

Thanks for reading! This post was written by Nick Stambaugh, not AI.

  • Stay up to date with Nick's latest posts via RSS
  • Have a question or want to discuss a topic? Email Nick
  • This website costs money to maintain and contains only one advertisement. Consider buying Nick a coffee as a token of appreciation.