The order of an ordinary differential equation is the highest order of differentiation that appears in the equation. For instance, the differential equation has order three.

In this section we begin the study of solutions to differential equations of the form

where are constants with and is a continuous function. These equations are order and linear. The constants are called the coefficients of the differential equation (??). After dividing (??) by , we may assume that .

In analogy to systems of linear equations, we call (??) homogeneous if for all . Otherwise the equation is inhomogeneous. In particular, the principle of superposition is valid for the homogeneous equations.

Reduction of Equations to First Order Systems

In principle, we can find solutions to (??) by finding solutions of a corresponding linear system of first order ODEs with constant coefficients. We have previously discussed this reduction in the special case of second order equations to planar systems in Section ??. Let

With these functions, (??) (with ) can be rewritten as Hence, (??) is equivalent to which is a linear constant coefficient system of ODEs. More explicitly, define the coefficient matrix by and introduce the vectors Then we arrive at the system of ODEs Let us summarize.

The Homogeneous Equation

Now consider specifically the case when (??) is homogeneous. As before, we assume that , and solve

Proposition ?? implies that each solution of (??) is the first component in a solution to the system where is the matrix defined in (??). From the discussion in Section ??, it follows that we can find all solutions to (??) if we know the eigenvalues and the Jordan block structure of . In particular, the first component of solutions to (??) is always just a linear combination of the functions where is an eigenvalue of . In the abstract, the only question that remains is which powers can actually occur. Certainly, must be less than the multiplicity of the eigenvalue . It also follows from Proposition ?? that there are precisely linearly independent functions that are solutions to (??).

We can use this abstract information to find a shortcut for solving (??). Suppose that . Then we can compute the left hand side of (??) with this obtaining:

Thus, is a solution to (??) precisely when is a root of We call the characteristic polynomial of the order equation (??). The roots of the characteristic polynomial are called eigenvalues. This terminology is explained in Section ??.

It follows immediately that there is one solution associated to each eigenvalue of the characteristic polynomial in (??). If the eigenvalues are complex, then there are two solutions to (??), namely, and .

Proof
The previous calculations show that if is an eigenvalue of , then is a solution to (??). The difficulty in proving this theorem is in showing that is also a solution to (??) for any , where is the multiplicity of the eigenvalue . We prove this theorem in two steps. First, we show in Lemma ?? that the eigenvalues of are just the eigenvalues of the characteristic polynomial of the coefficient matrix in (??). Second, we show in Lemma ?? that every eigenvalue of is associated to precisely one Jordan block and that every eigenvector of has a nonvanishing first component. Then the result follows from Theorem ??.

Proof
We prove the lemma by induction. For the matrix is just . Hence as desired.

Now suppose that the result is valid for all matrices of order . Then we may expand the determinant by cofactors along the column (see (??) in Chapter ??) and obtain By induction, the first determinant is and by direct calculation the second determinant is . Therefore,

This proves the lemma.

Proof
Let be an eigenvalue of and let be a corresponding eigenvector. Writing in coordinates we obtain Note that if then , which contradicts the fact that is an eigenvector. Hence and we may rescale so that . It follows that as desired.

We restate the results in Theorem ?? in real form.

Examples of Fourth Order

Consider the linear homogeneous ordinary differential equation

This type of equation arises if one considers small deformations of an elastic beam under pressure where the pressure is acting at both ends of the beam in the direction of the beam. In this case represents the resulting deformation of the beam at the spatial point .

First, we find all eigenvalues of the characteristic polynomial by solving This fourth order polynomial has two roots namely , each of algebraic multiplicity two. By Theorem ??, the general solution of (??) has the form For instance, if we consider a beam which is hinged at both of its ends — say at and — then the corresponding solution has to satisfy These conditions on the solution lead to a homogeneous system of four linear equations in the four unknowns . This system can easily be solved by hand, and it follows that , and have to vanish, whereas is arbitrary. Thus, under these conditions a small deformation of the beam is given by .

In general, however, we can not expect to find the roots of a fourth order characteristic polynomial by inspection. For example, suppose we add a first order term to (??) obtaining the differential equation

The characteristic polynomial of (??) is We can use MATLAB to find the roots of , as follows. Polynomials are entered into MATLAB by entering the coefficients in an array from highest order to lowest. So we enter into MATLAB by typing
p = [1 0 2 -1 1];

To find the roots of just type the command roots(p). MATLAB responds with
ans =
 
  -0.3438 + 1.3584i  
  -0.3438 - 1.3584i  
   0.3438 + 0.6254i  
   0.3438 - 0.6254i

By Theorem ??, the general solution of (??) has the form Note that the typical solution to the fourth order differential equation (??) contains sine and cosine terms with two different frequencies. This is not surprising since the characteristic polynomial has two distinct complex conjugate pairs of roots. See Section ??.

The Initial Value Problem for Higher Order Equations

For motivation, recall the introductory mechanical examples. The motion of mass points are described by second order ODEs. To determine a specific motion we need to specify the position of the point together with its velocity at a certain time . In other words, to obtain existence and uniqueness of solutions to second order equations, both have to be specified.

Proof
The result is an immediate consequence of Proposition ??, since the corresponding solution of the system of linear differential equations exists and is unique (see Theorem ?? in Chapter ??).

Inhomogeneous Higher Order Equations

Linearity implies that to find the general solution the inhomogeneous equation (??) we need to find one solution to that equation and all solutions to the corresponding homogeneous equation (??). Sections ?? and ?? are devoted to finding specific solutions to inhomogeneous equations of various types using the method of undetermined coefficients. Our study of inhomogeneous equations will continue in Chapter ?? where we use Laplace transforms to study discontinuous forcing and in Section ?? where we discuss the method of reduction of order.

Exercises

In Exercises ?? – ?? rewrite the given higher order equation as a first order system.

In Exercises ?? – ?? find the general solution to the given homogeneous linear differential equation.

Find a solution to the differential equation satisfying and .

In Exercises ?? – ??, use MATLAB to find the roots of the characteristic polynomial for the given homogeneous linear differential equation, and then find the general solution to that equation.