ConceptComplete

Homogeneous Linear Equations with Constant Coefficients

Second-order linear differential equations with constant coefficients are among the most important and widely applicable ODEs. They appear in mechanics (oscillations), electrical engineering (circuits), and many other fields.

DefinitionSecond-Order Linear Homogeneous ODE

A second-order linear homogeneous differential equation with constant coefficients has the form:

ay+by+cy=0ay'' + by' + cy = 0

where a,b,ca, b, c are real constants with a0a \neq 0. The equation is called homogeneous because the right-hand side is zero.

The solution method relies on seeking exponential solutions of the form y=erxy = e^{rx}, which leads to the characteristic equation.

Characteristic Equation Method

Substituting y=erxy = e^{rx} into the differential equation:

ar2erx+brerx+cerx=0ar^2e^{rx} + bre^{rx} + ce^{rx} = 0

Factoring out erxe^{rx} (which is never zero):

ar2+br+c=0ar^2 + br + c = 0

This is the characteristic equation (or auxiliary equation). The nature of its roots determines the form of the general solution.

ExampleDistinct Real Roots

Solve y5y+6y=0y'' - 5y' + 6y = 0.

The characteristic equation is:

r25r+6=0r^2 - 5r + 6 = 0

Factoring: (r2)(r3)=0(r-2)(r-3) = 0, giving r1=2r_1 = 2 and r2=3r_2 = 3.

The general solution is:

y=c1e2x+c2e3xy = c_1e^{2x} + c_2e^{3x}

where c1c_1 and c2c_2 are arbitrary constants determined by initial conditions.

Three Cases Based on Discriminant

Let Δ=b24ac\Delta = b^2 - 4ac be the discriminant. Three cases arise:

Case 1: Two Distinct Real Roots (Δ>0\Delta > 0)

If r1r2r_1 \neq r_2 are real, the general solution is:

y=c1er1x+c2er2xy = c_1e^{r_1 x} + c_2e^{r_2 x}

Case 2: Repeated Real Root (Δ=0\Delta = 0)

If r1=r2=rr_1 = r_2 = r, the general solution is:

y=(c1+c2x)erxy = (c_1 + c_2x)e^{rx}

Case 3: Complex Conjugate Roots (Δ<0\Delta < 0)

If r=α±iβr = \alpha \pm i\beta, the general solution is:

y=eαx(c1cosβx+c2sinβx)y = e^{\alpha x}(c_1\cos\beta x + c_2\sin\beta x)

ExampleComplex Roots - Harmonic Oscillator

Solve y+4y=0y'' + 4y = 0.

Characteristic equation: r2+4=0r^2 + 4 = 0

Roots: r=±2ir = \pm 2i (so α=0\alpha = 0, β=2\beta = 2)

General solution:

y=c1cos2x+c2sin2xy = c_1\cos 2x + c_2\sin 2x

This describes undamped harmonic oscillation with angular frequency ω=2\omega = 2.

Remark

The repeated root case requires the extra factor of xx to produce a second linearly independent solution. This can be verified using the method of reduction of order or Wronskian theory. Without this factor, we would have only one solution instead of the required two for a second-order equation.

ExampleRepeated Root - Critical Damping

Solve y+4y+4y=0y'' + 4y' + 4y = 0.

Characteristic equation: r2+4r+4=0r^2 + 4r + 4 = 0

Factoring: (r+2)2=0(r+2)^2 = 0, giving repeated root r=2r = -2.

General solution:

y=(c1+c2x)e2xy = (c_1 + c_2x)e^{-2x}

This represents critically damped motion in mechanical systems or circuits.

The characteristic equation method provides an algorithmic approach that always yields the complete solution for constant coefficient homogeneous equations.