Introduction: Why Supply-side Health?

Ian McCarthy | Emory University

Table of contents

  1. Motivation

  2. Course Overview

Class Goals

I have two goals for today’s class:

  1. Motivate the course: Why the U.S. health care system is an interesting case and why people should study it
  2. Overview of course structure and broad content

Motivation: The U.S. Paradox

Health Improvements

Major improvements in life expectancy (and many other measures of health) across the world

  • Poverty reduction
  • Technology development and innovation
  • Technology diffusion and adoption
  • Access to better services, including health care

Health Improvements

R Code
gapminder %>%
  group_by(year) %>%
  summarize(lifeExp = median(lifeExp),
            gdpMed = median(gdpPercap)) %>%
  ggplot(aes(year,lifeExp)) + geom_line(alpha = 1/3) + theme_bw() +
    labs(x = "Year",
         y = "Life Expectancy (years)",
         title = "Median life expectancy across the world")

Health and Wealth

R Code
ggplot(data = gapminder, mapping = aes(x = gdpPercap, y = lifeExp)) + 
  geom_point(size = 1) + theme_bw() + scale_x_continuous(label = comma) +
  labs(x = "GDP Per Capita ($US)",
       y = "Life Expectancy (years)",
       title = "Life expectancy and GDP")

Health and Wealth

R Code
ggplot(gapminder, aes(gdpPercap, lifeExp, size = pop)) +
  geom_point(alpha = 0.5, show.legend = FALSE) +
  scale_colour_manual(values = country_colors) +
  scale_size(range = c(2, 12)) +
  scale_x_log10() +
  facet_wrap(~continent) +
  labs(title = 'Year: {frame_time}', x = 'Log GDP Per Capita ($US)', y = 'Life Expectancy (years)') +
  transition_time(year) +
  ease_aes('linear') +
  theme_bw()

But the U.S. is unique

R Code
mycolors <- c("US" = "red", "other" = "grey50")
gapminder %>% filter(country %in% c("Canada", "France", "Germany", "Italy", "Japan", "United Kingdom", "United States")) %>%
  mutate(highlight = ifelse(country=="United States", "US", "other")) %>%
  ggplot(aes(gdpPercap, lifeExp, size = pop)) +
  geom_point(alpha = 0.5, show.legend = FALSE, aes(color=highlight)) +
  scale_color_manual("U.S.", values = mycolors) +
  scale_size(range = c(2, 12)) +
  scale_x_comma(limits=c(0,55000)) + 
  labs(title = 'Year: {frame_time}', x = 'GDP Per Capita ($US)', y = 'Life Expectancy (years)') +
  transition_time(year) +
  ease_aes('linear') +
  theme_bw()

The U.S. “Paradox”

  1. World leader in health care spending
  2. World leader in medical innovation
  3. Poor health outcomes on average

Health Care Spending and Outcomes

 

Health Care Spending and Outcomes

 

What does that mean?

  • Are we just woefully inefficient?
  • The right answer is probably more complicated
    • U.S. very good in some areas (breast cancer treatment, interventional cardiology)
    • Let’s look at some more graphs from the Commonwealth Fund

So why is the US so different?

Some common arguments:

  • Poor health
  • Overutilization
  • High physician salaries
  • Fraud
  • Administrative waste

So why is the US so different?

The real culprit(s):

  • Administrative waste
  • Prices! (outcome of many underlying factors including information problems, fragmentation, policy, etc.)
  • Some fraud

Rephrasing of the Problem

We have an “access” problem in the U.S. In many ways, we “overprovide” care to some people and underprovide care to lots of other people. We are particularly bad at helping the least healthy among us. These issues are, of course, very closely related to other economic problems and inequality in general.

Turning to this course…

Why economics?

Lots of interesting economic issues in health care, not all unique to the US.

  1. Extremely heterogeneous products
  2. Asymmetric information between patients and physicians
  3. Unobservable quality (experience good)
  4. Unpredictable need (inability to shop in many cases)
  5. Distortion of incentives due to insurance
  6. Adverse selection (asymmetric information between patients and insurers)

Why economics?

  • These factors exist in other markets and in other countries, but…
  • Health care is unique in the combination of these issues
  • U.S. is unique in the extent of these issues in health care (policy problems)

Course Overview

We study U.S. health care through the patient’s journey:

  1. Insurance – choosing a plan
    • Adverse selection, moral hazard, market design
  2. Physicians – visiting a doctor
    • Agency problems, financial incentives, quality of care
  3. Hospitals – receiving care
    • Pricing, insurer negotiations, consolidation
  4. Prescription Drugs – patents, generics, FDA regulation, innovation

Learning Goals

By the end of this course, you will be able to:

  1. Explain the structure and history of the U.S. health care system
  2. Model adverse selection in insurance and connect to data
  3. Analyze physician incentives and agency problems
  4. Describe hospital pricing and insurer negotiations
  5. Summarize key features of prescription drug markets
  6. Apply data to assess hospital policies in practice

Assignments & Logistics

  • Participation – in-class and Canvas activities
  • Homework (3) – mix of theory and data, ~60 pts each
  • Midterm Exam – 60 pts (Tuesday, 10/21)
  • Final Project – group-based, 140 pts

Total = 400 points → standard grading scale

Class meets: Tues/Thurs, 8:30–9:45am, White Hall 103
Office Hours: Tues/Thurs, 10–11am, RRR 418 (or by appointment)

Nuts and Bolts

  • Class Website – slides, notes, assignments, data
  • Canvas – readings, grades, announcements, private info (e.g., Zoom links)
  • Teaching Assistant – Katerina Katsimpri (Office Hours: Fri 4–6pm, RRR 4th floor)
  • Data & Software – R (recommended), Python, Excel, or Google Sheets all acceptable
  • Office Hours – Prof. McCarthy, Tues/Thurs 10–11am, RRR 418 (sign up online)

Closing

Takeaways from Today

  • The U.S. spends the most on health care yet underperforms on many outcomes.
  • Economics explains this paradox: incentives, information, and market structure matter.
  • This course equips you with the tools to analyze these problems and evaluate policy solutions.