Questions: Systems of First-Order Linear Differential Equations
3 questions to test your understanding
Score: 0 / 3
Question 1 Multiple Choice
In the system y' = Ay + b(t), what does the matrix A encode?
AThe initial conditions of the system
BHow each variable contributes to the rate of change of the others
CThe solutions of the individual equations
DThe number of independent variables
Each entry A_ij captures how the j-th variable contributes to the rate of change of the i-th variable. This coupling between equations is exactly what distinguishes a system from a collection of independent scalar ODEs, and it is why scalar methods must be extended using linear algebra.
Question 2 True / False
A single second-order ODE y'' = f(t, y, y') can always be converted into a system of two first-order ODEs.
TTrue
FFalse
Answer: True
Setting y₁ = y and y₂ = y' transforms the equation into the system y₁' = y₂ and y₂' = f(t, y₁, y₂). This reduction is why first-order systems are the fundamental object of study — every higher-order ODE reduces to one, so methods for systems apply universally.
Question 3 Short Answer
Why is matrix form y' = Ay useful for solving systems of linear ODEs?
Think about your answer, then reveal below.
Model answer: Matrix form unifies the system into a single equation structurally identical to the scalar case y' = ay, enabling eigenvalue decomposition to find solutions of the form e^(λt)v, where λ is an eigenvalue of A and v is the corresponding eigenvector.
The scalar ODE y' = ay has solution y = Ce^(at). For the matrix system, the role of a is played by A, and solutions take the form e^(λt)v where λ and v are eigenvalue-eigenvector pairs of A. The matrix form makes this analogy explicit and systematic.