Skip to main content

Coordinated Differential Equations

Section 4.3 Numerical Techniques for Systems

If we are unable to find an analytic solution to a first-order differential equation yβ€²=f(t,y), there is no reason to expect that it will be any easier to solve a system of equations. However, many of the numerical techniques that are used to solve a first-order equation can be extended to solve a system.

Subsection 4.3.1 Duffing’s Equation

Large mobile cranes can reach up to 700 feet (Figure 4.3.1). This is about the same height as a 50 story building. At such heights, cranes are susceptible to winds and the end of the boom can move back and forth several feet even in moderate winds. We can model the motion as a harmonic oscillator if the side-to-side motion is not too great. However, if the wind becomes too strong and the crane moves too much, gravity will become a factor and the crane may topple due to its weight.
described in detail following the image
a photo of two construction cranes
Figure 4.3.1. Cranes
Before we can construct a model that might best describe the swaying of a large crane, we should remind ourselves of how harmonic oscillators work (see Section 1.1). A simple mass-spring system can be modeled by the equation
md2xdt2=βˆ’kx,
where x=x(t) is the displacement of the mass at time t. Given such a system, the mass will oscillate forever with constant amplitude. If we want to be a bit more realistic, we can introduce a damping force,
βˆ’bdxdt,
where b>0. Our equation now becomes
md2xdt2=βˆ’kxβˆ’bdxdt.
If we let p=b/m and q=k/m, we can rewrite this last equation as
d2xdt2+pdxdt+qx=0.
If we set v=xβ€², we can rewrite this second-order equation as a system of first-order equations,
dxdt=v,dvdt=βˆ’qxβˆ’pv.
In the case of our swaying crane, we will let x=x(t) be the displacement of the end of the boom from the perfect vertical position. When x(t)β‰ 0, the boom is bent, and the structure of the boom supplies a strong restorative force to bring everything back to a true vertical position. Thus, the swaying of our crane’s boom might be described by an equation such as
d2xdt2+0.1dxdt+0.3x=0
or the equivalent system,
dxdt=v,dvdt=βˆ’0.3xβˆ’0.1v.
We will learn how to solve such systems later, but it is easy to check that
x(t)=c1eβˆ’t/20cos⁑(11920t)+c2eβˆ’t/20sin⁑(11920t)
is a solution to our equation.
The constants c1 and c2 can be determined if we know the initial position and initial velocity of the end of the crane’s boom. We show several solutions to our equation in Figure 4.3.2.
described in detail following the image
position and velocity curves with the amplitude of the oscillations decreasing as time increases
Figure 4.3.2. Solutions to xβ€³+0.1xβ€²+0.3x=0
Modeling the swaying motion of a crane with a harmonic oscillator might work only if the side-to-side motion is small. If the motion is larger, we must account for the effect of gravity in our model. When x(t) is large, part of the crane will not be above any other part of the crane. Thus, gravity will pull downward on that part of the crane and will cause the crane to bend even further. We can model this effect by setting the equation for our harmonic oscillator equal to a factor of x3,
(4.3.1)d2xdt2+0.1dxdt+0.3x=0.02x3.
When x is small, this forcing term will not contribute much to the motion of the building. However, when x is large, the term will contribute a great deal. The equation xβ€³+0.1xβ€²+0.3x=0.02x3 is an example of Duffing’s equation.
We can rewrite equation (4.3.1) as a system of first-order differential equations by letting dx/dt=v,
(4.3.2)dxdt=v(4.3.3)dvdt=βˆ’0.1vβˆ’0.3x+0.02x3.
Thus, one of our main objectives should be finding and analyzing solutions to such a system.

Subsection 4.3.2 Euler’s Method for Systems

The system of equations (4.3.2)–(4.3.3) is nonlinear due the x3 term. There is little hope to finding an analytic solution to such a system. We can use software to plot the phase plane in order to learn something about the solutions (Figure 4.3.3). However, we still need to numerically generate solutions in order to plot the phase plane.
described in detail following the image
three curves on a field of slope arrows with two curves approaching an equilibrium solution at the origin and the remaining curve approaching infinity
Figure 4.3.3. The phase plane for Duffing’s equation
Let us see how we might find a numerical solution for a system. Consider the system
dxdt=f(t,x,y)dydt=g(t,x,y),
with initial conditions x(t0)=x0 and y(t0)=y0. We can rewrite our system in vector form
dxdt=f(t,x)x(t0)=x0
where x=(x,y), dx/dt=(dx/dt,dy/dt), f=(f,g), and x0=(x0,y0). We wish to find approximate values x1,x2,…,xn and y1,y2,…,yn for the solution x(t) and y(t) at the points
tk=t0+kh,k=1,2,…,n,
where h is the step size. If we let xk=(xk,yk) and fk=(f(xk,yk),g(xk,yk)), then Euler’s method now becomes
xk+1=xk+hfk
xk+1=xk+hf(tk,xk,yk)yk+1=yk+hg(tk,xk,yk).
The initial conditions are used to determine f0, which is the tangent vector to the graph of the solution x(t) in the xy-plane (Figure 4.3.3). We can move in the direction of this tangent vector for time h in order to find the next point x1. We then calculate a new tangent vector f1 and then move along this new vector for a time step h to find x2. We can repeat this technique to generate an approximate solution curve in the phase plane.

Example 4.3.4. Numerical Solutions for Duffing’s Equation.

We are now in a position to calculate some solutions to Duffing’s equation. Suppose that
dxdt=v,dvdt=βˆ’0.3x+0.02x3βˆ’0.1v,
with initial conditions (t0,x0,v0)=(0,0,1.7652). Using a numerical algorithm, we can generate enough points to generate a graph of the solution (Figure 4.3.5).
described in detail following the image
a position and a velocity curve that both approach zero with smaller and smaller oscillations
Figure 4.3.5. Solutions for Duffing’s equation with initial conditions x(0)=0 and v(0)=1.7652
The surprising thing about Duffing’s equation is that it is extremely sensitive to initial conditions. A slight change in the initial conditions can yield dramatically different solutions. If we change the initial velocity to v(0)=1.7653, we obtain a very different graph of the solution (Figure 4.3.5 ). For small initial velocities, solutions spiral towards the origin. However, a larger initial velocity will send the solution in the phase plane away from the origin. If the crane sways too violently, we will have a disaster.
described in detail following the image
a position and a velocity curve that both approach positive infinity
Figure 4.3.6. Solutions for Duffing’s equation with initial conditions x(0)=0 and v(0)=1.7653

Example 4.3.7.

Let us consider the system
xβ€²=xβˆ’y+tyβ€²=βˆ’x+y2βˆ’t2x(0)=1y(0)=0.
Then (x0,y0)=(1,0). Letting the step size be h=0.1, we obtain and
(x1y1)=(x0y0)+h(f(t0,x0,y0)g(t0,x0,y0))=(10)+(0.1)(1βˆ’1)=(1.1βˆ’0.1).
Similarly,
(x2y2)=(x1y1)+h(f(t1,x1,y1)g(t1,x1,y1))=(1.1βˆ’0.1)+(0.1)(1.3βˆ’1.1)=(1.23βˆ’0.21).
Using this procedure, we can generate a list of values that will approximate the solution to our system (Table 4.3.8).
Table 4.3.8. Euler’s approximation for a system of equations
k tk xk hf(tk,xk,yk) yk hg(tk,xk,yk)
0 0.0 1.0000 0.1000 0.0000 βˆ’0.1000
1 0.1 1.1000 0.1300 βˆ’0.1000 βˆ’0.1100
2 0.2 1.2300 0.1640 βˆ’0.2100 βˆ’0.1226
3 0.3 1.3940 0.2027 βˆ’0.3326 βˆ’0.1373
4 0.4 1.5967 0.2467 βˆ’0.4699 βˆ’0.1536
5 0.5 1.8433 0.2967 βˆ’0.6235 βˆ’0.1705
6 0.6 2.1400 0.3534 βˆ’0.7940 βˆ’0.1870
7 0.7 2.4934 0.4174 βˆ’0.9809 βˆ’0.2021
8 0.8 2.9108 0.4894 βˆ’1.1830 βˆ’0.2151
9 0.9 3.4002 0.5698 βˆ’1.3982 βˆ’0.2255
10 1.0 3.9701 0.6594 βˆ’1.6237 βˆ’0.2334
Notice that our system is not autonomous and depends on time. Therefore, we cannot graph the phase plane of this system; however, we can graph a solution curve in three dimensions (Figure 4.3.9).
Figure 4.3.9. A solution curve for Duffing’s equation

Activity 4.3.1. Solving a System Numerically.

Consider the system
xβ€²=2xyβ€²=y
with initial conditions x(0)=1 and y(0)=3.
(a)
Show that x(t)=(e2t,3et) satisfies the initial value problem.
(b)
Use Euler’s method with step size Ξ”t=0.5 to approximate this solution, and check how close the approximation is to the real solution when t=2, t=4, and t=6.
(c)
Use Euler’s method with step size Ξ”t=0.1 to approximate this solution, and check how close the approximation is to the real solution when t=2, t=4, and t=6.
(d)
Discuss how and why the Euler approximations differ from the real solution.

Subsection 4.3.3 Taylor Series Methods

Just as in the case of a single first-order differential equation, we can think of Euler’s approximation as the first two terms of the Taylor series expansion,
(xk+1yk+1)=(xkyk)+h(xkβ€²ykβ€²)+h22(xkβ€³ykβ€³)+β‹―=(xkyk)+h(f(tk,xk,yk)g(tk,xk,yk))+h22(xkβ€³ykβ€³)+β‹―.
To get a more accurate approximation, we can take the first two terms of the Taylor series. In this case, we must compute xβ€³. If we return to our example,
xβ€²=xβˆ’y+tyβ€²=βˆ’x+y2βˆ’t2x(0)=1y(0)=0.
we can see how this is done. First, note that
xβ€³=(xβ€³yβ€³)=(xβ€²βˆ’yβ€²+1βˆ’xβ€²+2yyβ€²βˆ’2t)=((xβˆ’y+t)βˆ’(βˆ’x2+y2βˆ’t2)βˆ’(xβˆ’y+t)+2y(βˆ’x+y2βˆ’t2)βˆ’2t)=(2xβˆ’yβˆ’y2+t+t2βˆ’x+yβˆ’2xy+2y3βˆ’2t2yβˆ’3t).
Our algorithm now becomes clear,
(xk+1yk+1)=(xkyk)+h(f(tk,xk,yk)g(tk,xk,yk))+h22(xkβ€³ykβ€³)=(xk+h(xkβˆ’yk+tk)+h2(2xkβˆ’ykβˆ’yk2+tk+tk2)/2yk+h(βˆ’xk+yk2βˆ’tk2)+h2(βˆ’xk+ykβˆ’2xkyk+2yk3βˆ’2tk2ykβˆ’3tk)/2).
Of course, this algorithm requires us to compute some derivatives.

Subsection 4.3.4 A Word about Existence and Uniqueness

The consequences of the Existence and Uniqueness Theorem are much the same as they were for first-order differential equations.
  • If we are interested in a certain system of differential equations, it is very nice to know that a unique solution exists.
  • Uniqueness tells us that two solutions cannot start at the same place. Geometrically, this implies that solution curves cannot cross.
  • If we have an autonomous system xβ€²=f(x), our solution does not depend on time. Thus, we obtain the same solution curve if we start at the same point even though we might start at different times.
For a proof of existence and uniqueness for systems of differential equations, see [12].

Subsection 4.3.5 Important Lessons

  • A damped harmonic oscillator can be described by the second-order equation
    d2xdt2+pdxdt+qx=0.
    We can rewrite this equation as a first-order system,
    dxdt=v,dvdt=βˆ’qxβˆ’pv.
  • Duffing’s equation,
    d2xdt2+pdxdt+qx=x3,
    is an example of a differential equation that is very sensitive to initial conditions.
  • Many systems of equations cannot be solved analytically. However, we can use numerical techniques such as Euler’s Method to find approximate solutions for the system. Given the system
    dxdt=f(t,x,y)dydt=g(t,x,y),
    with initial condition (x0,y0) and step size h, we can approximate a solution to the system by
    xk+1=xk+f(xk,yk)hyk+1=yk+g(xk,yk)h.
    We can extend this method to the improved Euler’s method, Taylor series methods, or Runge-Kutta methods.
  • Provided certain conditions are met, we are guaranteed unique local solutions to any system of first-order differential equations. Some of the following are consequences of existence and uniqueness.
  • Uniqueness tells us that two distinct solutions cannot start at the same place. Geometrically, this implies that solution curves cannot cross.
  • If we have an autonomous system xβ€²=f(x), our solution does not depend on time. Thus, we obtain the same solution curve if we start at the same point even though we might start at different times.

Reading Questions 4.3.6 Reading Questions

1.

What does it mean for a system of equations to be autonomous?

2.

What does it mean for a system of equations to be sensitive to initial conditions?

Exercises 4.3.7 Exercises

1.

Consider the system
xβ€²=x+3yyβ€²=xβˆ’y
with initial conditions x(0)=0 and y(0)=1.
  1. Show that
    x(t)=(34e2tβˆ’34eβˆ’2t14e2t+34eβˆ’2t)
    satisfies the initial value problem.
  2. Use Euler’s method with step size Ξ”t=0.5 to approximate this solution, and check how close the approximation is to the real solution when t=2, t=4, and t=6.
  3. Use Euler’s method with step size Ξ”t=0.1 to approximate this solution, and check how close the approximation is to the real solution when t=2, t=4, and t=6.
  4. Discuss how and why the Euler approximations differ from the real solution.

2.

Consider the system
xβ€²=yyβ€²=βˆ’10xβˆ’2y
with initial conditions x(0)=0 and y(0)=1.
  1. Show that
    x(t)=(13eβˆ’tsin⁑3teβˆ’tcos⁑3tβˆ’13eβˆ’tsin⁑3t)
    satisfies the initial value problem.
  2. Use Euler’s method with step size Ξ”t=0.5 to approximate this solution, and check how close the approximation is to the real solution when t=2, t=4, and t=6.
  3. Use Euler’s method with step size Ξ”t=0.1 to approximate this solution, and check how close the approximation is to the real solution when t=2, t=4, and t=6.
  4. Discuss how and why the Euler approximations differ from the real solution.

3.

Consider the system
xβ€²=βˆ’xβˆ’yyβ€²=xβˆ’3y
with initial conditions x(0)=5 and y(0)=1.
  1. Show that
    x(t)=eβˆ’2t(5+4t1+4t)
    satisfies the initial value problem.
  2. Use Euler’s method with step size Ξ”t=0.5 to approximate this solution, and check how close the approximation is to the real solution when t=2, t=4, and t=6.
  3. Use Euler’s method with step size Ξ”t=0.1 to approximate this solution, and check how close the approximation is to the real solution when t=2, t=4, and t=6.
  4. Discuss how and why the Euler approximations differ from the real solution.