Example: System of Linear Differential Equations
Consider the following system of first-order linear differential equations:
\[\begin{aligned} x_1' &= -3x_1 + x_2 \\ x_2' &= x_1 - 3x_2 \end{aligned}\]
This can be written in matrix form as:
\[\vec{x}' = \begin{bmatrix} -3 & 1 \\ 1 & -3 \end{bmatrix} \vec{x}\]
Eigenvalues and Eigenvectors
Suppose we found the following eigenvalues and corresponding eigenvectors:
\[\begin{aligned} \lambda_1 &= -4, & \vec{v}_1 &= \begin{bmatrix} 1 \\ -1 \end{bmatrix} \\ \lambda_2 &= -2, & \vec{v}_2 &= \begin{bmatrix} 1 \\ 1 \end{bmatrix} \end{aligned}\]
General Solution
The general solution is given by:
\[\vec{x} = c_1 e^{-4t} \begin{bmatrix} 1 \\ -1 \end{bmatrix} + c_2 e^{-2t} \begin{bmatrix} 1 \\ 1 \end{bmatrix}\]
Asymptotic Behavior
The asymptotes are defined by the eigenvectors:
\[\begin{bmatrix} 1 \\ -1 \end{bmatrix}, \begin{bmatrix} 1 \\ 1 \end{bmatrix}\]
Both trajectories go into the origin because both eigenvalues are negative (\(\lambda < 0\)).
- The origin is reached when \(t \to \infty\).
- Any initial point could be from \(t = -\infty\).
When \(t \to \infty\), the term \(e^{-4t}\) decays much faster than \(e^{-2t}\) (\(e^{-4t} \ll e^{-2t}\)). Therefore, solutions follow the direction of the eigenvector associated with the slower decay rate:
Solutions follow \(\begin{bmatrix} 1 \\ 1 \end{bmatrix}\) to go into the origin, but initially follow \(\begin{bmatrix} 1 \\ -1 \end{bmatrix}\).