systems and stability
Systems of Differential Equations
You should know: second order differential equation, matrices
Overview
A system of first-order linear differential equations describes several interacting quantities simultaneously, x′ = Ax, where x(t) is a vector of unknown functions and A is a constant coefficient matrix. Any higher-order single ODE can be rewritten as an equivalent first-order system by introducing derivatives as new variables, so systems are the general framework underlying all ODE theory. When A has a full set of eigenvectors, the solution is a combination of exponential modes eᵗλv, one per eigenvalue-eigenvector pair, exactly mirroring the characteristic-root approach for scalar equations. Systems naturally model coupled phenomena such as predator-prey populations, multi-compartment chemical reactions, and multi-mass spring networks.
Intuition
Think of a system x′=Ax as several quantities pushing and pulling on each other's rates of change, the way rabbit and fox populations each affect the other's growth rate. Diagonalizing (finding eigenvectors of) A finds the special combinations of the variables that DON'T interact — each such combination grows or decays purely exponentially at its own eigenvalue rate, decoupled from the rest. The general solution is then just a blend of these independent 'normal modes,' exactly as decomposing a vector into eigenbasis coordinates simplifies any linear transformation.
Formal Definition
For a linear system with constant coefficient matrix A, solutions are built from eigenvalues λ and eigenvectors v of A:
Worked Examples
Write the coefficient matrix and find its eigenvalues from det(A-λI)=0.
Find eigenvector for λ=3: (A-3I)v=0 gives -2v₁+2v₂=0, so v=(1,1).
Find eigenvector for λ=-1: (A+I)v=0 gives 2v₁+2v₂=0, so v=(1,-1).
General solution and apply initial conditions x(0)=4, y(0)=0.
Answer: x(t) = 2e^(3t) + 2e^(-t), y(t) = 2e^(3t) − 2e^(-t) (verify: x′=6e^{3t}-2e^{-t}; x+2y = 2e^{3t}+2e^{-t}+4e^{3t}-4e^{-t}=6e^{3t}-2e^{-t}=x′ ✓. y′=6e^{3t}+2e^{-t}; 2x+y=4e^{3t}+4e^{-t}+2e^{3t}-2e^{-t}=6e^{3t}+2e^{-t}=y′ ✓. x(0)=4,y(0)=0 ✓).
Practice Problems
Find the eigenvalues of A = [[4,1],[2,3]] for the system x′=Ax.
Convert y″ + 4y = 0 into a first-order system x₁′=?, x₂′=? using x₁=y, x₂=y′.
A simplified two-species model near equilibrium linearizes to x′=-x+y, y′=x-y (x,y are small population deviations). Find the eigenvalues and describe long-term behavior.
Quiz
Summary
- A linear system x′=Ax generalizes scalar ODEs; any higher-order ODE converts into an equivalent first-order system.
- Solutions are built from eigenvalues and eigenvectors of A: each pair contributes an exponential mode e^{λt}v.
- The general solution is a linear combination of these independent modes, mirroring the characteristic-root method for scalar equations.
Mathematics