Skip to main content

Section 2.2 The Geometry of Systems

We can use direction fields in the phase plane to represent autonomous systems
\begin{align} \frac{dx}{dt} & = f(x, y),\tag{2.2.1}\\ \frac{dy}{dt} & = g(x, y).\tag{2.2.2} \end{align}
Equation (2.2.1) tells us how a solution curve changes in the \(x\) direction, while equation (2.2.2) tells us how a solution curve changes in the \(y\) direction.

Subsection 2.2.1 Direction Fields

Example 2.2.1.

Consider the differential equation for a simple harmonic oscillator that we developed in Section 1.1,
\begin{equation*} mx'' + kx = 0. \end{equation*}
If we assume that \(k\) and \(m\) are both equal to one and let \(x' = v\text{,}\) we can rewrite this equation as the first order system,
\begin{align*} x' & = v,\\ v' & = -x. \end{align*}
The direction field is relatively easy to understand. After plotting only few vectors, we can very quickly see that the vectors are tangent to circles centered at the origin (Figure 2.2.2). Since the solutions to the undamped harmonic oscillator \(x'' + x = 0\) are of the form
\begin{equation*} x(t) = A \cos t + B \sin t \end{equation*}
for arbitrary constants \(A\) and \(B\text{,}\) this should not be too surprising.
a circle plotted on a direction field of slope arrows
Figure 2.2.2. The direction field for a harmonic oscillator
Let us examine some systems of equations with direction fields that are easily plotted.

Example 2.2.3.

The system
\begin{align*} x' & = x\\ y' & = y \end{align*}
gives us a direction field where the vectors point away from the origin (Figure 2.2.4).
a field of slope arrows pointing away from the origin
Figure 2.2.4. The direction field for \(x' = x\) and \(y' = y\)
The system
\begin{align*} x' & = -x,\\ y' & = -y. \end{align*}
gives us a direction field where the vectors point towards the origin (Figure 2.2.5).
a field of slope arrows pointing towards the origin
Figure 2.2.5. The direction field for \(x' = -x\) and \(y' = -y\)
The system
\begin{align*} x' & = -x,\\ y' & = -5y. \end{align*}
also gives us a direction field where the vectors point towards the origin; however, we shall soon see that there are important differences between this direction field and the direction field of the previous system (Figure 2.2.5).
a field of slope arrows pointing towards the origin with the arrows point more directly towards the horizontal axis
Figure 2.2.6. The direction field for \(x' = -x\) and \(y' = -5y\)

Activity 2.2.1. Plotting Direction Fields.

Plot direction fields for each of the following systems of differential equations in the \(xy\)-plane.
(a)
\begin{align*} x' & = -3x\\ y' & = 4y \end{align*}
(b)
\begin{align*} x' & = 2x\\ y' & = y/2 \end{align*}
(c)
\begin{align*} x' & = x/2\\ y' & = 2y \end{align*}
(d)
\begin{align*} x' & = x + y\\ y' & = x - y \end{align*}

Subsection 2.2.2 Modified Predator-Prey System

Let us recall the modified predator-prey system that we developed in the last section. That is, we will assume that the prey in our model has logistic growth,
\begin{align*} \frac{dR}{dt} & = aR(1 - R/N) - bRF,\\ \frac{dF}{dt} & = -cF + dRF, \end{align*}
where \(N\) is the carrying capacity. In order to investigate the geometric properties of our system, we will rewrite our system in vector form. For each value of \(t\text{,}\) we will use \({\mathbf x}(t)\) to denote the vector-valued function
\begin{equation*} {\mathbf x}(t) = \begin{pmatrix} R(t) \\ F(t) \end{pmatrix}. \end{equation*}
This vector-valued function, \(\mathbf x(t)\) corresponds to our solution curve \((R(t), F(t))\) in the \(RF\)-plane. Now we can write our predator-prey model as a single vector equation,
\begin{equation*} \frac{d \mathbf x}{dt} = \begin{pmatrix} R'(t) \\ F'(t) \end{pmatrix} = \begin{pmatrix} aR(1 - R/N) - bRF, \\ -cF + dRF \end{pmatrix}. \end{equation*}
We can view the right side of the equation as a vector field. The specific example that we examined was
\begin{align*} \frac{dR}{dt} & = 2R\left(1 - \frac{R}{10}\right) - RF,\\ \frac{dF}{dt} & = -5F + RF. \end{align*}
The vector field form of this system is
\begin{equation*} \frac{d \mathbf x}{dt} = \begin{pmatrix} 2R(1 - R/10) - RF \\ -5F + RF \end{pmatrix}. \end{equation*}
We can associate a vector in the \(RF\)-plane for each value of \(R\) and \(F\text{.}\) For example, if we let \((R, F) = (10, 10)\text{,}\) we have \((R', F') = (-100, 50)\text{.}\) At this particular point, the population of rabbits is falling rapidly while the number of foxes is climbing very quickly, We can represent this vector in the phase plane by drawing an arrow in the proper direction. Thus, we obtain a direction field for our system of differential equations (Figure 2.2.7).
a curve that spirals towards an equilibrium solution on a field of slope arrows
Figure 2.2.7. A vector field for the predator-prey system

Subsection 2.2.3 A Competing Species Model

Suppose that \(x\) and \(y\) are the population of two distinct species that compete for the same resources. For example, two species of fish may compete for the same food in a lake, leopards and lions may compete for the same prey, or cattle and sheep may compete for the same grazing land. We can model two competing species using the following system of first-order differential equations,
\begin{align*} \frac{dx}{dt} & = \alpha x \left(1 - \frac{x}{M} \right) - \beta xy\\ \frac{dy}{dt} & = \gamma y \left(1 - \frac{y}{N} \right) - \delta xy. \end{align*}
The first term in each equation is the logistic growth of each species. The second term is how the species is affected by interacting with the competing species.

Example 2.2.8.

Suppose that \(x = x(t)\) and \(y = y(t)\) are two populations, competing for the same resources, are governed by the following system of differential equations,
\begin{align*} \frac{dx}{dt} & = x(1-x) - \alpha xy\\ \frac{dy}{dt} & = y(1-y) - \alpha xy. \end{align*}
If we study how the two populations interact, we will discover two very different cases depending on the value of the parameter \(\alpha\text{.}\)
If we let \(\alpha = 2\text{,}\) then there is a strong interaction between the two species and our system becomes
\begin{align*} \frac{dx}{dt} & = x(1-x) - 2xy\\ \frac{dy}{dt} & = y(1-y) - 2xy. \end{align*}
We are interested in what happens as \(t \to \infty\text{.}\) First we will examine what happens when \(dx/dt =0\) and \(dy/dt =0\text{:}\)
\begin{align*} \frac{dx}{dt} & = x(1 - x - 2y)\\ \frac{dy}{dt} & = y(1 - y - 2x). \end{align*}
If \(dx/dt = 0\text{,}\) then
\begin{align} x & = 0\tag{2.2.3}\\ y & = (1 - x)/2.\tag{2.2.4} \end{align}
Similarly, if \(dy/dt = 0\text{,}\) we have
\begin{align} y & = 0\tag{2.2.5}\\ y & = 1 - 2x.\tag{2.2.6} \end{align}
The lines in equations (2.2.3)(2.2.6) are called nullclines. In general, if we are given the system
\begin{align*} \frac{dx}{dt} & = f(x, y)\\ \frac{dy}{dt} & = g(x, y), \end{align*}
then the values of \(x\) and \(y\) satisfying \(dx/dt = f(x, y) = 0\) are called the \(x\)-nullclines of the system and the values of \(x\) and \(y\) satisfying the equation \(dy/dt = g(x, y) = 0\) are called the \(y\)-nullclines of the system.
a solution curve on a field of slope arrows and nullclines
Figure 2.2.9. Nullclines for the case \(\beta = 2\)
In our example, we can plot the \(x\) and \(y\)-nullclines to help us understand our system (Figure 2.2.9). Of course, we have an equilibrium solution whenever an \(x\)-nullcline intersects with a \(y\)-nullcline. Thus, the equilibrium points for our particular system are \((0,0)\text{,}\) \((1, 0)\text{,}\) \((0, 1)\text{,}\) and \((1/3, 1/3)\text{.}\) Furthermore, we can choose a representative point in each region to find how the direction field is oriented. If we are given the initial condition \((1.4, 1.3)\) for example, we can see that
\begin{align*} \frac{dx}{dt} & = -4.2\\ \frac{dy}{dt} & = -4.03. \end{align*}
Since both of these numbers are negative, we can see that our initial trajectory is headed down and to the left—slightly more to the left than down. However, we have no guarantee that the trajectory will continue in this direction.
Before we proceed further with our analysis, let us determine what happens on the nullclines themselves. That is, we will examine the case when \(dx/dt = 0\) or \(dy/dt = 0\text{.}\) If \(dx/dt = 0\text{,}\) then any solution crossing this \(x\)-nullcline must be moving vertically. There can be no right or left movement at this point in the phase portrait. We can indicate this fact along with the direction of vertical movement by drawing a vertical slash with an arrow on the \(x\)-nullcline (Figure 2.2.9). For example, the point \((0.5, 0.25)\) lies on the \(x\)-nullcline and
\begin{equation*} \frac{dy}{dt}(0.5, 0.25) \lt 0. \end{equation*}
Therefore, the trajectory that crosses the \(R\)-nullcline at \((0.5, 0.25)\) is moving down. As we move along the \(x\)-nullcline, the direction of this arrow can only change when we cross an \(y\)-nullcline.
Similarly, there can be no vertical motion on an \(y\)-nullcline. We will indicate the direction of horizontal motion by drawing a horizontal line with an arrow pointing to the right if \(dx/dt \gt 0\) on the \(y\)-nullcline and an arrow pointing to the left if \(dx/dt \lt 0\) on the \(y\)-nullcline.
We can also determine the basic direction of the solution curve by checking what happens at a point in each of the regions bounded by the nullclines. For example, at the point \((0.1, 0.1)\) we find that
\begin{align*} \frac{d}{dt}x(0.1, 0.1) & = 0.7\\ \frac{d}{dt}y(0.1, 0.1) & = 0.7. \end{align*}
Thus, the general direction of any solution curve in this region is up and right (Figure 2.2.9).
What happens to the initial condition \((1.4, 1.3)\text{?}\) We see three possible scenarios if we follow the nullclines for large values of \(t\text{.}\)
  • Only species \(x\) survives and species \(y\) becomes extinct.
  • Only species \(y\) survives and species \(x\) becomes extinct.
  • There are essentially equal numbers of species \(x\) and \(y\text{.}\)

Activity 2.2.2. Plotting Direction Fields with Nullclines.

Consider the competing species model
\begin{align*} \frac{dx}{dt} & = x(1-x) - \beta xy\\ \frac{dy}{dt} & = y(1-y) - \beta xy, \end{align*}
where the species interact weakly, say \(\beta = 1/2\text{.}\)
(a)
Find the \(x\) and \(y\)-nullclines for this system.
(b)
Find all equilibrium points for this system.
(c)
The nullclines will divide the first quadrant of the plane, \(x \geq 0\) and \(y \geq 0\text{,}\) into different regions. In each of these regions find a slope vector at some point \((x_0, y_0)\) in the region. For example, at the point \((1,2)\text{,}\) we can attach slope vector \((-1, -3)\text{.}\)
(d)
Sketch the phase plane for this system.
(e)
If the initial populations are given by \(x(0) = 2.4\) and \(y(0) = 0.3\text{,}\) what happens to the two populations as \(t \to \infty\text{?}\)

Example 2.2.10.

There is no reason why our nullclines should be limited to straight lines. The system
\begin{align*} x' & = y - x^2\\ y' & = x - 2 \end{align*}
has an \(x\)-nullcline \(y = x^2\) and a \(y\)-nullcline \(x = 2\text{.}\) These two nullclines intersect at \((2, 4)\text{,}\) and the system has a single equilibrium solution. The nullclines divide the plane into four basic regions (Figure 2.2.11). By choosing a point in each of these regions and determining the direction of the slope field at that point, we can decide the direction of the slope field in the entire region.
a solution curve on a field of slope arrows and nullclines
Figure 2.2.11. The system \(x' = y - x^2\) and \(y' = x - 2\)
The only equilibrium solution of our system occurs at \((2, 4)\text{.}\)

Subsection 2.2.4 Plotting Direction Fields with Sage

It is easy to plot direction fields using Sage. We can plot the direction field for the system
\begin{align*} x' & = y - 2x,\\ y' & = x - xy - x^3 \end{align*}
using the following Sage interact. You can evaluate the cell below to get a menu driven applet for drawing direction fields for systems of two differential equations.
Figure 2.2.12. A Sage applet for plotting direction fields for systems

Subsection 2.2.5 A Summary of Phase Plane Analysis

We can use the following series of steps to summarize phase plane analysis for the nonlinear system
\begin{align*} \frac{dx}{dt} & = f(x, y)\\ \frac{dy}{dt} & = g(x, y). \end{align*}
  • Step 1. Draw the curves where \(f(x, y) = 0\text{.}\) These curves are called the \(x\)-nullclines. When a solution curve \({\mathbf x}(t)\) lies on one of these curves, \(dx/dt = 0\text{,}\) draw vertical slash marks on the \(x\)-nullclines to remind yourself that a trajectory crossing the nullcline can only do so if it is moving in a vertical direction at the instant of crossing.
  • Step 2. Draw the curves where \(g(x, y) = 0\text{.}\) These curves are called the \(y\)-nullclines. When \({\mathbf x}(t)\) lies on one of these curves, \(dg/dt = 0\text{.}\) Draw horizontal slash marks on the \(y\)-nullclines to remind yourself that a trajectory crossing the nullcline can only do so if it is moving in a horizontal direction at the instant of crossing.
  • Step 3. Label the points where the \(x\) and \(y\)-nullclines intersect. These intersections are the equilibrium points. If \({\mathbf x}(t)\) is ever at one of these points, then both \(dx/dt\) and \(dy/dt\) vanish. This means that the trajectory stays at the equilibrium point for all time. If our system is going to tend towards a steady state, then \({\mathbf x}(t)\) will approach on of the equilibrium points as \(t \to \infty\text{.}\)
  • Step 4. Label the regions of the \(xy\)-plane where \(dx/dt \lt 0\) and where \(dx/dt \gt 0\text{.}\) These regions are always separated by \(x\)-nullclines. Likewise, label the regions where \(dy/dt\) is positive and negative.
  • Step 5.Go back and put arrows on the vertical hash marks of the \(x\) nullclines. These arrows indicate whether the motion across the nullcline is up or down. The arrows are up on the parts of the \(x\)-nullclines that are in the \(dy/dt \gt 0\) region, and down on those parts of the \(x\)-nullclines in the \(dy/dt \lt 0\) regions. Likewise, draw arrows on the horizontal slash marks of the \(y\)-nullclines. These arrows are pointing right on the parts of the \(y\)-nullclines in the \(dx/dt \gt 0\) regions and left point on the parts in the \(dx/dt \lt 0\) regions.
  • Step 6.
    • If \(dx/dt \gt 0\) and \(dy/dt \gt 0\text{,}\) then both \(x(t)\) and \(y(t)\) are increasing and the trajectory moves up and right.
    • If \(dx/dt \gt 0\) and \(dy/dt \lt 0\text{,}\) the trajectory moves down and right.
    • If \(dx/dt \lt 0\) and \(dy/dt \gt 0\text{,}\) the trajectory moves up and left.
    • If \(dx/dt \lt 0\) and \(dy/dt \lt 0\text{,}\) the trajectory moves down and left.

Subsection 2.2.6 Important Lessons

  • The righthand side of the system
    \begin{align*} \frac{dx}{dt} & = f(x, y)\\ \frac{dy}{dt} & = g(x, y) \end{align*}
    can be viewed as a vector field, \((f(x,y), g(x,y))\text{,}\) which can be plotted in the \(x,y\)-plane.
  • Competition between two competing species can be modeled with the system
    \begin{align*} \frac{dx}{dt} & = \alpha x \left(1 - \frac{x}{M} \right) - \beta xy\\ \frac{dy}{dt} & = \gamma y \left(1 - \frac{y}{N} \right) - \delta xy. \end{align*}
  • We can use nullclines and phase plane analysis to sketch solution curves for the system
    \begin{align*} \frac{dx}{dt} & = f(x, y)\\ \frac{dy}{dt} & = g(x, y). \end{align*}

Reading Questions 2.2.7 Reading Questions

1.

Using your own words, explain what a nullcline is.

2.

What happens at the intersection of an \(x\)-nullcline and a \(y\)-nullcline?

Exercises 2.2.8 Exercises

1.

Consider a cooperating species model
\begin{align*} \frac{dx}{dt} & = x(1-x) + \beta xy\\ \frac{dy}{dt} & = y(1-y) + \beta xy, \end{align*}
where the species interact weakly, say \(\beta = 1/2\text{.}\)
  1. Find the \(x\) and \(y\)-nullclines for this system.
  2. Find all equilibrium points for this system.
  3. Sketch the phase plane for this system.
  4. If the initial populations are given by \(x(0) = 2.4\) and \(y(0) = 0.3\text{,}\) what happens to the two populations as \(t \to \infty\text{?}\)

Plotting Phase Portraits.

For the following two systems of equations
  • Find the equilibrium points of the system.
  • Sketch the phase plane and direction field for each system (technology will be helpful).
  • Briefly describe the behavior of typical solutions.
2.
\begin{align*} x' & = 3x + 4y\\ y' & = -x + y \end{align*}
3.
\begin{align*} x' & = -3x + 4y\\ y' & = -x + y \end{align*}
4.
\begin{align*} x' & = -3x + 4y\\ y' & = x + 6y \end{align*}
5.
\begin{align*} x' & = \cos y\\ y' & = -x + y \end{align*}
6.
\begin{align*} x' & = -3x + 4y + x^2\\ y' & = -x + y - xy \end{align*}

7.

Consider an epidemic that moves through an isolated population. We will make the following assumptions about the epidemic.
  • Individuals are infected at a rate proportional to the product of the number of infected and susceptible individuals. We assume that the constant of proportionality is \(\alpha\text{.}\)
  • The length of the incubation period is negligible, and infectious individuals are immediately infectious.
  • On the average, an infected individual dies after 10 days.
  • Only a single individual is initially ill.
  • Infected individuals do not give birth, but susceptible individuals have a birth rate of 0.0003 per individual per year. Newborns are susceptible.
If \(S(t)\) is the number of susceptible and \(I(t)\) is the number of infected people, then
\begin{align} \frac{dS}{dt} & = -\alpha SI + 0.0003S\tag{2.2.7}\\ \frac{dI}{dt} & = \alpha SI - 0.1I.\tag{2.2.8} \end{align}
The constant \(\alpha\) is a measure of the relative infectivity of the disease. Some diseases such as Ebola, a viral hemorrhagic fever, are extremely infectious with a mortaility rate of up to 90%. On the other hand, AIDS which is caused by the HIV virus, has a much lower transmission rate. The goal of this exercise is to examine the differences between the two.
  1. If \(\alpha = 0.05\text{,}\) draw the phase portrait. Be sure to label all nullclines and equilibrium solutions. Suppose that \(S(0) = 1000\) and \(I(0) = 1\text{.}\) What happens to the solution curve as \(t \to \infty\text{?}\)
  2. If \(\alpha = 0.000001\text{,}\) draw the phase portrait. Be sure to label all nullclines and equilibrium solutions. Suppose that \(S(0) = 30000\) and \(I(0) = 1\text{.}\) What happens to the solution curve as \(t \to \infty\text{?}\)
  3. What conclusions can you draw about the behavior of the two different epidemics?

Subsection 2.2.9 Plotting Nullclines with Sage

Let us use Sage to analyze the system
\begin{align*} x' & = x + y,\\ y' & = -2x + y. \end{align*}
First let us plot the phase plane of the system without nullclines.
If these Sage commands seem unfamiliar, you may want to refer to Subsection 2.1.7
We can add nullclines to our plot using the implicit_plot function from Sage.
The \(x\)-nullclines are plotted in green and the \(y\)-nullclines are in red.
You have attempted of activities on this page.