You will learn how to convert higher-order differential equations into equivalent systems of first-order equations and solve those systems using eigenvalues and eigenvectors.
Many real-world problems involve multiple interacting quantities. We can rewrite a higher-order equation as a system of first-order equations.
For example, the second-order equation y′′+3y′+2y=0 becomes:
x1′=x2x2′=−2x1−3x2
where x1=y and x2=y′.
In matrix form: x′=Ax, where
A=[0−21−3]
The general solution depends on the eigenvalues and eigenvectors of A.
The phase portrait shows trajectories in the x1-x2 plane for a stable system. Multiple initial conditions all flow toward the origin along paths determined by the eigenvectors.
Systems of differential equations are fundamental in modeling coupled oscillators (multiple springs), predator-prey relationships in biology (Lotka-Volterra equations), electrical networks with multiple loops, chemical reaction networks, and even epidemiological models (SIR models for disease spread). In computer graphics and game physics, they simulate realistic multi-body interactions.