The Foundation for Systems of Differential Equations
Dr. Mohamed Mabrok · Qatar University
The Big Picture: Why Matrices Matter
Coupled ODEs Coupled Dynamics
Need Matrices!
$$\mathbf{x}' = A\mathbf{x}$$
Eigenvalues Determine Behavior
Growth / Decay
Oscillation
Key Framework
Systems of DEs → Matrix form → Find eigenvalues → Solve explicitly. This lecture covers step 3, the heart of the method.
Applications: Where Systems Arise
🌀
Coupled Springs
Two masses connected by springs — forces on each mass depend on positions of both.
$$m_1x_1'' = -k_1x_1 + k(x_2 - x_1)$$
⚡
Electrical Circuits
Multiple loops and meshes — currents and voltages are coupled via inductances and resistances.
$$LI_1'' + RI_1' = \ldots$$
🦌
Predator-Prey
Population dynamics — growth of prey depends on predators, and vice versa.
$$\frac{dx}{dt} = ax - bxy$$
The Common Thread
In all these systems, the rates of change depend on multiple variables. Eigenvalues of the coefficient matrix determine stability and long-term behavior.
Matrix Operations: Quick Review
Basic Operations
Matrix addition: add corresponding entries. Scalar multiplication: multiply all entries by the scalar.
The columns of $A$ show where the standard basis vectors get mapped by the linear transformation. Multiplying $A\mathbf{x}$ applies this transformation to vector $\mathbf{x}$.
Determinants: A Critical Scalar
2×2 Determinant
$$\det\begin{pmatrix} a & b \\ c & d \end{pmatrix} = ad - bc$$
$\lambda$ is an eigenvalue and $\mathbf{v}$ is the corresponding eigenvector (nonzero). The matrix only scales $\mathbf{v}$, no rotation!
Geometric Meaning
Eigenvectors are special directions. When $A$ acts on an eigenvector, it just stretches or compresses along that direction. No rotation, no change in direction.
Real part controls growth/decay, imaginary part controls rotation/oscillation frequency.
4-Step Method to Find Eigenvalues & Eigenvectors
STEP 1Compute $A - \lambda I$ (subtract $\lambda$ from diagonal)
This gives a matrix that depends on the parameter $\lambda$.
STEP 2Compute $\det(A - \lambda I)$ and set it equal to zero
The characteristic polynomial. Solve this to find the eigenvalues.
STEP 3Solve for $\lambda$ from the characteristic equation
Use factoring, quadratic formula, etc. Each eigenvalue is a root.
STEP 4For each $\lambda$, solve $(A - \lambda I)\mathbf{v} = \mathbf{0}$ for eigenvectors
Nonzero solutions form the eigenspace. Any nonzero vector in it is an eigenvector.
Common Mistakes to Avoid
⚠️ Frequent Errors
Forgetting the identity matrix: Write $A - \lambda I$, not just $A - \lambda$. The $I$ is crucial!
Arithmetic errors in the determinant: Compute $\det(A - \lambda I) = 0$ carefully. One mistake cascades!
Confusing eigenvalues with eigenvectors: $\lambda$ is a scalar (the eigenvalue). $\mathbf{v}$ is a vector (the eigenvector).
Forgetting eigenvectors are not unique: Any scalar multiple of an eigenvector is also an eigenvector. Choose simple ones (integers).
For complex eigenvalues, forgetting the conjugate pair: If $\lambda = \alpha + \beta i$ is an eigenvalue of a real matrix, so is $\bar{\lambda} = \alpha - \beta i$.
Not verifying the answer: Always check: $A\mathbf{v} = \lambda \mathbf{v}$. This catches mistakes!
Pro Tip
Verify your eigenvalues satisfy $\lambda_1 + \lambda_2 = \text{tr}(A)$ and $\lambda_1 \lambda_2 = \det(A)$ for 2×2 matrices. Quick sanity check!
Summary & What Comes Next
Distinct Real
$\lambda_1 \neq \lambda_2$
Pure exponential growth or decay
Eigenvectors determine natural directions
Repeated
$\lambda_1 = \lambda_2 = \lambda$
May need generalized eigenvectors
Solutions involve $t \cdot e^{\lambda t}$ terms
Complex Conjugates
$\lambda = \alpha \pm \beta i$
Oscillation with exponential envelope
Frequency = $\beta$, decay/growth = $\alpha$
The Bridge to Solving Systems
Now that we can find eigenvalues and eigenvectors, we'll use them to solve systems of differential equations: $\mathbf{x}' = A\mathbf{x}$. The complete solution will be a linear combination of these special exponential modes, one for each eigenvalue!
Real-World Payoff
Engineers use eigenvalues to predict stability of control systems, vibration modes of structures, and dominant long-term behaviors of complex coupled systems.