2×2 Linear System ODE Solver
Published on: December 14, 2025
This 2×2 Linear System ODE Solver helps you solve a system of two first-order differential equations and shows each step clearly. It can be used to work with coupled linear systems, apply suitable solution methods, and optionally use initial conditions to find a particular solution. This makes it useful for checking answers, understanding how linear systems of ODEs are solved, and practising differential equations step by step.
Step-by-step method
- Write the system clearly: x' = ..., y' = ...
- Rewrite the system in matrix form X' = A X.
- Compute eigenvalues from det(A − λI) = 0.
- Compute eigenvectors for each eigenvalue.
- Write the general solution using eigenpairs.
- If initial conditions are given, solve for constants.
- Classify the equilibrium using eigenvalues.
Formula bank:
Matrix form: X′ = A X
det(A − λI) = 0
X(t) = C1v1eλ1t + C2v2eλ2t
If λ = α ± iβ: X(t) = eαt(C1U(t) + C2V(t))
Sign up or login to get the full step solution for free!