2. Structure of solutions¶
Note
Technically, this is not the most general form possible, since an equation in the implicit form \(F(t,x,x',x'')=0\) might be impossible to manipulate into an explicit expression for \(x''\). We won’t be considering such equations.
As with first-order problems, we can learn a little from the trivial case \(x''=0\). This ODE implies that \(x'\) is constant, so \(x(t)=c_1 t + c_2\) for arbitrary constants \(c_1,c_2\). While a generalization of this observation is far from obvious at this point, it is nonetheless true.
Note
The general solution of second-order ODE has two integration constants.
As a consequence, we note that two initial conditions are now needed to specify the integration constants to get a unique solution.
A second-order IVP (initial-value problem) is
2.1. Linear problems¶
We will focus on linear problems,
Equation (2.5) is in the form of \(\opA[x]=f\) for the linear operator
We now reap more rewards for using the abstract language of operators with first-order problems, because the connections between general solutions and homogeneous solutions is exactly the same as before. In particular, we still have a theorem and an algorithm that provide a blueprint for the solution:
Find the general solution \(x_h\) of the associated homogeneous problem \(\opA[x]=0\).
Find any particular solution \(x_p\) of the original \(\opA[x]=f\).
Add them.
If given, use initial conditions to solve for the integration constants.
2.2. Reduction of order¶
There is, however, a major new wrinkle regarding the homogeneous part of the solution. Suppose that \(x_1(t)\) is one homogeneous solution, and we set \(x_2(t)=v(t)x_1(t)\) for an undetermined \(v(t)\). A little elbow grease shows that
We assumed that \(\opA[x_1]=0\). So we will also get \(\opA[x_2]=0\) if
This might not look important until we make one more definition, \(w=v'\), and rearrange:
That is a linear, first-order equation for \(w\)! We can solve that for \(w\), then find \(v\) by integrating \(w\), and then we have a new homogeneous solution, \(x_2\). This technique is called reduction of order, because we pulled a first-order equation out of a second-order one.
Example
One solution of
is \(x_1(t)=t\). Find another solution.
Solution
Rather than going through the entire process again, let’s plug into the formulas. We have \(p(t)=2/t\) and \(q(t)=2/t^2\). The equation for \(w\) is
Hence
Then we get
We only need to get some example of \(x_2\), so let’s go easy on ourselves and choose \(v(t)=t^{-3}\). We finally get
You can check that this is indeed a solution to the original homogeneous ODE.
The reduction of order technique suggests an important fact.
The general solution of a homogeneous, linear, second-order ODE is of the form
for arbitrary constants \(c_1\) and \(c_2\).
It’s too deep for us to go into a true proof of this theorem. You might be tempted to do another reduction of order starting from \(x_2\) in order to get a third solution. Nice try, but you don’t get any new terms that change (2.6).