eureka
experiment 041 · non-linear dynamics · epidemiology

SIR Epidemic Model

The Kermack-McKendrick SIR model is a fundamental compartmental model in epidemiology. It describes the spread of an infectious disease through a population divided into three compartments: Susceptible, Infectious, and Recovered. Explore how changes in transmission and recovery rates alter the course of an epidemic.

The Equations

The SIR model equations dictate the flow of individuals between the three compartments:

$$ \frac{dS}{dt} = -\frac{\beta S I}{N} $$ $$ \frac{dI}{dt} = \frac{\beta S I}{N} - \gamma I $$ $$ \frac{dR}{dt} = \gamma I $$

Where $N = S + I + R$ is the total population size.

Basic Reproduction Number

A key concept in epidemiology is the basic reproduction number, $R_0 = \beta / \gamma$. It represents the expected number of secondary cases produced by a single infectious individual in a completely susceptible population. If $R_0 > 1$, an epidemic will occur.

← back to workshop