Graduate → Differential Equations → Ordinary Differential Equations ↓
Second-Order Linear Equations
Second-order linear differential equations are an integral part of the study of differential equations, especially in graduate-level mathematics. These types of equations describe a variety of physical systems and phenomena, such as mechanical vibrations, electrical circuits, and more.
The general form of a second-order linear differential equation is:
a(x) y'' + b(x) y' + c(x) y = g(x)
Where:
a(x)
,b(x)
andc(x)
are functions of the independent variablex
.y
is the dependent variable.g(x)
is a known function.- The terms
y''
andy'
represent the second and first derivatives ofy
with respect tox
.
A special case of these equations is when the coefficients are constant, i.e., a(x)
, b(x)
and c(x)
are constants. The homogeneous form of such an equation is:
a y'' + by' + cy = 0
The corresponding non-homogeneous equation is:
a y'' + by' + cy = g(x)
Principle of superposition
For a linear differential equation, the principle of superposition states that if y_1(x)
and y_2(x)
are solutions of the homogeneous equation a y'' + by' + cy = 0
, then for any constants C_1
and C_2
, C_1 y_1(x) + C_2 y_2(x)
is also a solution. This principle helps in constructing the general solution of homogeneous equations.
Characteristic equation
To solve the homogeneous equation with constant coefficients a y'' + by' + cy = 0
, we convert it into an algebraic equation called the characteristic equation:
ar^2 + br + c = 0
This quadratic equation can be solved using the quadratic formula:
r = (-b ± √(b^2 - 4ac)) / (2a)
The nature of the roots (real and different, real and equal, or complex) determines the form of the general solution of the differential equation.
Types of solutions
Case 1: Real and distinct roots
If the characteristic equation has real and distinct roots r_1
and r_2
, then the general solution of the homogeneous differential equation is:
y(x) = C_1 e^(r_1 x) + C_2 e^(r_2 x)
Example
Consider the equation:
y'' - 3y' + 2y = 0
The characteristic equation is:
r^2 - 3r + 2 = 0
Solving using the Quadratic Formula:
r = (3 ± √(9 - 8)) / 2 r_1 = 2, r_2 = 1
The general solution is this:
y(x) = C_1 e^(2x) + C_2 e^x
Case 2: Real and repeated roots
If the characteristic equation has real and repeated roots r
, then the general solution becomes:
y(x) = (C_1 + C_2 x) e^(rx)
Example
Consider:
y'' - 4y' + 4y = 0
The characteristic equation is:
r^2 - 4r + 4 = 0
Solution:
r = (4 ± √(16 - 16)) / 2 r = 2 (repeated root)
The general solution is this:
y(x) = (C_1 + C_2 x) e^(2x)
Case 3: Complex roots
When the characteristic equation has complex roots, of the form r = α ± βi
, the general solution is:
y(x) = e^(α x) (C_1 cos(βx) + C_2 sin(βx))
Example
Consider the equation:
y'' + y = 0
The characteristic equation is:
r^2 + 1 = 0
Solution:
r = ±i
The general solution is this:
y(x) = C_1 cos(x) + C_2 sin(x)
Non-homogeneous equations
For a nonhomogeneous equation a y'' + by' + cy = g(x)
, the general solution is the sum of the general solution of the corresponding homogeneous equation and a particular solution y_p(x)
:
y(x) = y_h(x) + y_p(x)
Method of undetermined coefficients
This method involves estimating a particular solution y_p(x)
with undetermined coefficients and then solving for those coefficients. The form of y_p(x)
depends on g(x)
.
Example
Consider:
y'' - 2y' + y = e^x
Homogeneous solution from the previous calculation:
y_h(x) = (C_1 + C_2 x) e^x
The estimate y_p(x) = A xe^x
:
- Substitute in the nonhomogeneous differential equation
- Solve for A
Application
Second-order linear differential equations are used in a variety of fields such as physics and engineering. For example, they can describe:
- Spring-mass systems using Hooke's law.
- RC and RLC circuits in electrical engineering.
- Methods for predicting behaviour in systems, such as population dynamics, thermodynamics, etc.
Understanding these equations provides the basis for solving complex engineering problems and studying advanced dynamic systems.
Conclusion
Second-order linear differential equations form the cornerstone of mathematical modeling for continuous dynamic systems. By understanding the principles outlined above, you will better understand how to apply these equations to theoretical and practical problems in advanced mathematical settings and real-world applications.