Skip to main content

Section 2.1 Modeling with Systems

Many situations are best modeled with a system of differential equations rather than a single equation. We have already derived a model that describes how a population of snowshoe hares interacts with one of their primary predators, the lynx (Section 1.1). We denoted the population of hares by H(t) and the population of lynx by L(t), where t is the time measured in years and derived the system of differential equations
dHdt=aHβˆ’bHL,dLdt=βˆ’cL+dHL.
Just as in first-order differential equations, we can examine the equilibrium solutions of a system. More specifically, we define an equilibrium solution for a system of differential equations
dxdt=f(x,y)dydt=g(x,y)
to be those values of x and y such that f(x,y)=0 and g(x,y)=0. That is, an equilibrium solution is a solution where neither x(t) or y(t) is changing.

Subsection 2.1.1 Predator-Prey Systems

Suppose that we have a predator-prey system consisting of a population of foxes (F) and of rabbits (R).
 1 
Foxes are omnivores. Their diet consists of small mammals, including rabbits, as well as fruits, berries, and vegetables. They will even eat fish and crabs.
dRdt=2Rβˆ’RF,dFdt=βˆ’5F+RF,
we have an equilibrium solution at R=5 and F=2. That is, the system is in balance and there is just enough prey to support a constant population of predators at the point (R,F)=(5,2).
If the number of rabbits or foxes changes, then the system is no longer in balance. For example, if R=1 and F=1, then
dRdt=1,dFdt=βˆ’4,
and the rabbit population will be increasing while the fox population will decrease. If we assume that we have initial conditions
R0=R(0)=1,F0=F(0)=1,
we can apply a numerical algorithm to generate a solution for our system.
 2 
You will find technology extremely useful when analyzing systems. We will introduce Sage commands for analyzing systems of equations at the end of this section.
The graphs of the solutions for R(t) and F(t) are given in Figure 2.1.1. Notice that the solutions are periodic with the same period. Observe that a peak in the rabbit population is followed by a peak in the fox population.
Figure 2.1.1. A simple predator-prey system
We can graph the solution to our system in a different mannerβ€”we can construct a parametric plot of our solution in the RF-plane. Thus, a point on the graph is given by (R(t),F(t)) at time t. We can view the solution curve of our system in the RF-plane in Figure 2.1.2. The RF-plane is called the phase plane for our system of differential equations and is analogous to the phase line that we used during our investigation of slope fields for autonomous differential equations. We can plot many solutions to our predator-prey system and even plot direction fields in the phase plane (Figure 2.1.3).
Figure 2.1.2. A solution curve in the RF-plane
Figure 2.1.3. The phase plane for a predator-prey system
We will now modify our system by assuming that the rabbit population will grow logistically if there are no predators present. The system can now be written as
dRdt=aR(1βˆ’R/N)βˆ’bRF,dFdt=βˆ’cF+dRF,
where N is the carrying capacity. As a specific example, consider the system
dRdt=2R(1βˆ’R10)βˆ’RF,dFdt=βˆ’5F+RF.
It is easy to see that we have two equilibrium solutionsβ€”one at (R,F)=(0,0) and one at (R,F)=(5,1). Our solutions now behave very differently from the assumption that the population of the prey grows exponentially. If we have initial values R0=1 and F0=1, then our solution is no longer periodic (Figure 2.1.4). In fact, the solutions tend towards the equilibrium solution. The phase plane for our modified predator-prey system is given in Figure 2.1.5. The equilibrium solution (5,1) is an example of a stable equilibrium solution.
Figure 2.1.4. Solutions for a modified predator-prey system
Figure 2.1.5. Phase plane for a modified predator-prey system

Activity 2.1.1. Modifying Predator-Prey Systems.

Consider the following predator-prey system,
xβ€²=ax(1βˆ’x/N)βˆ’bxyyβ€²=βˆ’cy+dxy,
where x(t) is the population of the prey and y(t) is the population of the predator at time t.
(a)
How would you modify this system to include the effect of hunting of the prey at a rate of Ξ± units of prey per unit of time?
(b)
How would you modify this system to include the effect of hunting of the predators at a rate proportional to the number of predators?
(c)
Suppose the predators discover a second, unlimited source of food, but they still prefer to eat the primary prey when they can catch them. How would you modify the system to include this assumption?
(d)
Suppose the predators discover a second source of food that is limited in supply. How would you modify the system to include this assumption?
(e)
Suppose that the predators migrate to a different area if there are more than three times as many prey as predators in that area (x>3y) and they move back if there are fewer than three times as many prey as predators. How would you modify the system to take this into account?
(f)
Suppose that prey move out of an area at a rate proportional to the number of predators in the area. How would you modify the system to take this into account?

Subsection 2.1.2 The Spring-Mass Model Revisited

Recall the spring-mass model from Section 1.1. We have a mass lying on a flat surface that is attached to one end of a spring with the other end of the spring attached to a wall. The spring displacement is denoted by x. If x>0, then the spring is stretched. If x<0, the spring is compressed. If x=0, then the spring is in a state of equilibrium (Figure 1.1.4). If the surface is frictionless and we pull on the mass, then the mass will oscillate.
If we use a dashpot to add damping, the second-order differential equation for the spring-mass system is
mxβ€³=βˆ’bxβ€²βˆ’kx.
mxβ€³+bxβ€²+kx=0,
where m, b, and k are all positive constants.
A second-order differential equation can be restated in terms of a system of first order differential equations. Given the differential equation
mxβ€³+bxβ€²+kx=F(t),
with initial position x(0)=x0 and initial velocity xβ€²(0)=x0β€², we can rewrite this equation as a system of first-order differential equations by letting v(t)=xβ€²(t). In this case, the equation becomes
mvβ€²+bv+kx=F(t).
We now have a system of first-order differential equations,
xβ€²=v,vβ€²=1mF(t)βˆ’bmvβˆ’kmx,
with initial conditions
x(0)=x0v(0)=v0.

Activity 2.1.2. A Harmonic Oscillator.

Consider the equation
d2ydt2+kmy=0
for the motion of a simple harmonic oscillator.
(a)
Rewrite the second-order differential equation, d2y/dt2+(k/m)y=0, as a system of two first-order differentail equations, where v=yβ€².
(b)
Consider the function y(t)=cos⁑βt. Under what conditions on β is y(t) a solution to the differential equation?
(c)
What initial condition (t=0) in the yv-plane corresponds to this solution?
(e)
Sketch the solution curve in the yv-plane that corresponds to this solution.

Subsection 2.1.3 Modeling Epidemics

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 the COVID-19 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.
Letting Ξ±=0.005 and Ξ²=0.08, we can see how the susceptible and infected populations interact in an SIR epidemic in Figure 2.1.6.
Figure 2.1.6. The susceptible and removed populations for an SIR epidemic
There are many questions associated with epidemic models.
  • Will there be an epidemic?
  • If there is an epidemic, how many individuals will be infected?
  • Is there a period of time for which individuals are exposed to the disease but exhibit no symptoms and cannot infect others?
  • If the disease is endemic, what is the prevalence of the infection?
  • Can the disease be eradicated or controlled?
  • What is the effect of the population age structure?
To explore SIR models in more depth, see Project 2.5.1.

Subsection 2.1.4 Important Lessons

  • A second-order linear equation
    a(t)xβ€³+b(t)xβ€²+c(t)x=g(t)
    can be written as a system of first-order equations by letting v(t)=xβ€²(t).
  • We define an equilibrium solution for a system of differential equations
    dxdt=f(x,y)dydt=g(x,y)
    to be those values of x and y such that f(x,y)=0 and g(x,y)=0.
  • We can graph solutions to the system
    dxdt=f(x,y),dydt=g(x,y),
    as parametric plots in the xy-plane. A point on the graph is given by (x(t),y(t)) at time t. The xy-plane is called the phase plane for our system of differential equations.
  • Solution curves in the phase plane of
    dxdt=f(x,y),dydt=g(x,y),
    can act very differently depending on how close they are to a particular equilibrium solution.

Reading Questions 2.1.5 Reading Questions

1.

Given a system of first-order differential equations, explain in your own words what it means to be a stable equilibrium solution for the system.

Exercises 2.1.6 Exercises

1.

Verify whether or not the given pair of functions, (x(t),y(t)) forms a solution to the system
dxdt=4x+2ydydt=3xβˆ’y
  1. x(t)=eβˆ’2t+2e5t, y(t)=βˆ’3eβˆ’2t+e5t
  2. x(t)=2eβˆ’2t, y(t)=βˆ’6eβˆ’2t
  3. x(t)=2eβˆ’2t, y(t)=βˆ’5eβˆ’2t
  4. x(t)=c1eβˆ’2t+2c2e5t, y(t)=βˆ’3c1eβˆ’2t+c2e5t

2.

Verify whether or not the given pair of functions, (x(t),y(t)) forms a solution to the system
dxdt=4xβˆ’3ydydt=3x+4y
  1. x(t)=2e4tcos⁑3t, y(t)=2e4tsin⁑3t
  2. x(t)=2e4tcos⁑3tβˆ’3e4tsin⁑3t, y(t)=2e4tsin⁑3t+3e4tcos⁑3t
  3. x(t)=3e4tcos⁑3tβˆ’4e4tsin⁑3t, y(t)=3e4tsin⁑3t+5e4tcos⁑3t
  4. x(t)=c1e4tcos⁑3tβˆ’c2e4tsin⁑3t, y(t)=c1e4tsin⁑3t+c2e4tcos⁑3t

3.

A system is autonomous if dx/dt and dx/dt do not depend on t; that is,
dxdt=f(x,y)dydt=g(x,y).
Which of the following systems are autonomous?
  1. dxdt=4xβˆ’3ydydt=3x+4y
  2. dxdt=4xβˆ’3y+cos⁑xdydt=3x+4yβˆ’sin⁑x
  3. dxdt=4xβˆ’3y+3txdydt=3x+4yβˆ’ex
  4. dxdt=4xdydt=4y

4.

Change each of the following second-order initial value problems into a system of equations.
  1. xβ€³+6xβ€²βˆ’2x=0x(0)=1xβ€²(0)=1
  2. yβ€³+yβ€²βˆ’2y=0y(0)=2yβ€²(0)=0
  3. d2xdt2+dxdtβ€²+4x=sin⁑tx(0)=4xβ€²(0)=βˆ’3
  4. xβ€³+txβ€²βˆ’2=0x(0)=0xβ€²(0)=1

5.

Change each of the following second-order initial value problems into a system of equations.
  1. xβ€³+6xβ€²βˆ’2x=0x(0)=1xβ€²(0)=1
  2. yβ€³+yβ€²βˆ’2y=0y(0)=2yβ€²(0)=0
  3. d2xdt2+dxdtβ€²+4x=sin⁑tx(0)=4xβ€²(0)=βˆ’3
  4. xβ€³+txβ€²βˆ’2=0x(0)=0xβ€²(0)=1

6.

Consider the SIR model
dSdt=βˆ’Ξ±SIdIdt=Ξ±SIβˆ’Ξ²I,
where S is the susceptible population and I is the infected population.
  1. Modify the SIR model to account for the situation where the susceptible population is reproducing at a rate proportional to the current population.
  2. Modify the SIR model to account for the situation where the susceptible population is decreasing at a constant rate such as susceptibles leaving an infected area or city.
  3. Modify the SIR model to account for the situation where the infected population is increasing at a constant rate such as infected individuals entering an infected area or city from the outside.

7.

A mass weighing 4 pounds stretches a spring 4 inches.
  1. Consider the function y(t)=cos⁑βt. Under what conditions on β is y(t) a solution to the differential equation?
  2. Formulate an initial value problem that corresponds to the motion of this undamped mass-spring system if the mass is extended 1 foot from its rest position and released with no initial velocity.
  3. Using the result of the previous exercise, find the solution of this initial value problem.

Subsection 2.1.7 Using Sage to Solve Systems

We can use Sage to plot the solution of the system
(2.1.1)xβ€²=βˆ’xβˆ’y(2.1.2)yβ€²=x+y/5(2.1.3)x(0)=1(2.1.4)y(0)=βˆ’1
First, let us plot a direction field for our system.
Notice the vectors have different lengths depending on their magnitudes. If we wish all of the vectors to have the same length, we can divide each component by the length of the vector.
We can also add axes labels to our plot.
Now suppose that we wish to plot solutions x(t) and y(t) to our system. We can use the Sage command desolve_system_rk4.
We now have a numerical approximation of the solution to the system (2.1.1)–(2.1.4). However, our approximation is just a very long list of points. In fact, we get a list of triples, (t,x,y). It would be much more useful if we could display a graph of the solution. In the code below, we grab pairs (t,x) and (t,y) and then plot the points using the line command.
We can also add colors, axes labels, and legend colors so that the plot makes more sense.
To plot the solution in the xy–plane, we will need to select the second two entries in each triple.
We can adjust the thickness of the plot add an arrow to indicate the direction of the solution.
Now let us add a vector field to our plot.
To learn more about how to use Sage to solve systems of differential equations, see www.sagemath.org/doc/reference/calculus/sage/calculus/desolvers.html. The Sage cell below can be used to make your own computations.
You have attempted 1 of 2 activities on this page.