Processing math: 100%
Skip to main content

Section 2.5 Projects for Systems of Differential Equations

Subsection 2.5.1 Project—Mathematical Epidemiology 101

Systems of differential equations are very useful in epidemiology. Differential equations can be used to model various epidemics, including the bubonic plague, influenza, AIDS, the 2015 ebola outbreak in west Africa, and most currently the coronavirus pandemic. To understand how we might model an epidemic, we will consider a very simple situation. We will assume that we have a closed population of size N, where immigration, emigration, and birth do not play an important role. We will also ignore any deaths that are not related to our disease.

We will assume that each individual in the population falls into one of the following categories:

S(t)=Susceptible individualsI(t)=Infected individualsR(t)=Removed individuals

Susceptible individuals are those who do not yet have the disease and can catch the disease from infected individuals. Individuals enter the removed population by either recovering from the disease or dying. If an infected individual recovers, then the individual is immune to the disease. Schematically, we can represent the effect of the disease by the diagram

S⟶I⟶R.

Since the population is closed, we know that

S(t)+I(t)+R(t)=N.

This model is called an SIR model.

We can model how the disease acts with the following system of equations,

dSdt=−αSIdIdt=αSI−βIdRdt=βI.

We say that α is the rate of infection and β is the rate at which the infected are removed. That is, an infected individual either dies or recovers after 1/β days. Since

ddt[S(t)+I(t)+R(t)]=ddtN=0,

we need only solve the system

dSdt=−αSIdIdt=αSI−βI.

This is a nonlinear system, but it can be solved numerically.

Exercises Exercises

1.

Describe what the parameters α and β mean in terms of the epidemic.

2.

Suppose that α=0.005 and β=0.08, use Sage to create a graph like the one in Figure 2.1.6.

3.

In the 2020 coronavirus pandemic, which of the two parameters do we have some control over? Describe what changes can be made (at the public health level) and how they will change the parameter (will the parameter increase or decrease?).

4.

Modify this parameter and create at least three additional graphs similar to the one in (2). Clearly state each of the three different parameter values you used. You should not need to make drastic changes to the parameter to get different results.

5.

For each of your three modified parameter values and the original value answer the following questions.

  1. What is maximum value of the infected population (in terms of N?

  2. At what time does the maximum infected population occur?

6.

Summarize how the changes in your parameter affected your results to the previous question.

7.

In the SIR model, we have three populations: susceptible, infected, and removed. In the SEIR model, we have an additional population E, which are individuals exposed the the disease. Explain the equations

dSdt=−αSIdEdt=αSI−βEdIdt=βE−γIdRdt=γI.

for the SEIR model.