ConceptComplete

Reduction of Order Method

When one solution of a homogeneous linear equation is known, the reduction of order method finds a second linearly independent solution by reducing the order of the differential equation.

DefinitionReduction of Order

Given the second-order equation y+p(x)y+q(x)y=0y'' + p(x)y' + q(x)y = 0 with one known solution y1(x)0y_1(x) \neq 0, a second solution can be found in the form:

y2(x)=v(x)y1(x)y_2(x) = v(x)y_1(x)

where v(x)v(x) satisfies a first-order equation.

Derivation

Substituting y=vy1y = vy_1 into the differential equation:

y=vy1+vy1y' = v'y_1 + vy_1' y=vy1+2vy1+vy1y'' = v''y_1 + 2v'y_1' + vy_1''

The equation becomes:

(vy1+2vy1+vy1)+p(vy1+vy1)+q(vy1)=0(v''y_1 + 2v'y_1' + vy_1'') + p(v'y_1 + vy_1') + q(vy_1) = 0

Since y1+py1+qy1=0y_1'' + py_1' + qy_1 = 0, the vv terms cancel:

vy1+2vy1+pvy1=0v''y_1 + 2v'y_1' + pv'y_1 = 0

vy1+v(2y1+py1)=0v''y_1 + v'(2y_1' + py_1) = 0

Let w=vw = v':

wy1+w(2y1+py1)=0w'y_1 + w(2y_1' + py_1) = 0

This is separable:

dww=2y1+py1y1dx\frac{dw}{w} = -\frac{2y_1' + py_1}{y_1}dx

ExampleFinding Second Solution

Given y2y+y=0y'' - 2y' + y = 0 with known solution y1=exy_1 = e^x, find y2y_2.

Here p(x)=2p(x) = -2. Using the formula:

w=w(2ex2exex)=0w' = -w\left(\frac{2e^x - 2e^x}{e^x}\right) = 0

So w=c1w = c_1, thus v=c1v' = c_1, giving v=c1x+c2v = c_1x + c_2.

Taking c1=1,c2=0c_1 = 1, c_2 = 0:

y2=xexy_2 = xe^x

General solution: y=c1ex+c2xex=(c1+c2x)exy = c_1e^x + c_2xe^x = (c_1 + c_2x)e^x

Standard Formula

For y+p(x)y+q(x)y=0y'' + p(x)y' + q(x)y = 0 with known solution y1y_1:

y2=y1ep(x)dxy12dxy_2 = y_1\int \frac{e^{-\int p(x)dx}}{y_1^2}dx

ExampleVariable Coefficients

Solve x2y2xy+2y=0x^2y'' - 2xy' + 2y = 0 given y1=xy_1 = x.

First convert to standard form: y2xy+2x2y=0y'' - \frac{2}{x}y' + \frac{2}{x^2}y = 0

So p(x)=2/xp(x) = -2/x. Using the formula:

y2=xe(2/x)dxx2dx=xe2lnxx2dx=xx2x2dx=xdx=x2y_2 = x\int \frac{e^{-\int (-2/x)dx}}{x^2}dx = x\int \frac{e^{2\ln x}}{x^2}dx = x\int \frac{x^2}{x^2}dx = x\int dx = x^2

General solution: y=c1x+c2x2y = c_1x + c_2x^2

Remark

The reduction of order method works for equations of any order, not just second-order. If an (n1)(n-1)-dimensional solution space is known for an n-th order equation, the method can find the remaining solution.

ExampleEuler Equation

For Euler equations x2y+axy+by=0x^2y'' + axy' + by = 0, if we know one solution (often found by trying y=xry = x^r), reduction of order finds all others systematically.

Given x2yxy+y=0x^2y'' - xy' + y = 0 with y1=xy_1 = x:

y2=xe(1/x)dxx2dx=xxx2dx=xlnxy_2 = x\int \frac{e^{\int (1/x)dx}}{x^2}dx = x\int \frac{x}{x^2}dx = x\ln x

The reduction of order method is particularly valuable for variable-coefficient equations where other methods fail, transforming an n-th order problem into an (n1)(n-1)-th order one.