1
Engage

Introduction to SIR Models

Learning Objectives

The SIR Model Framework

The SIR model divides a population into three compartments:

S - Susceptible

Can catch the disease

I - Infected

Currently infectious

R - Recovered

Immune (or deceased)

The Differential Equations

dS/dt = -beta * S * I / N

dI/dt = beta * S * I / N - gamma * I

dR/dt = gamma * I

Where:

  • beta = transmission rate (contacts per time x probability per contact)
  • gamma = recovery rate (1/infectious period)
  • N = total population (S + I + R, constant)

Activity: Simulating an Outbreak

Spreadsheet Simulation

Build an SIR model with: N = 1000, I(0) = 1, beta = 0.3/day, gamma = 0.1/day

  1. Set up columns for time, S, I, R
  2. Use Euler's method: S(t+dt) = S(t) + dS/dt * dt
  3. Plot all three curves over 100 days
  4. Calculate peak infection time and size
  5. Experiment with different beta and gamma values

Key Takeaway

The SIR model provides a mathematical framework for understanding epidemic dynamics. The interaction between susceptible and infected populations, governed by transmission and recovery rates, produces the characteristic epidemic curve. This foundation will allow us to explore R0 and intervention modeling in subsequent lessons.

← Unit Overview Lesson 2: R0 →