A system x ′ = A x is a rule that turns each point into a velocity arrow — a whole field of arrows filling space. The entire matrix method is the search for a few special straight lines where those arrows point along the line itself , because along such a line the tangled system collapses into the single easy equation u ′ = λ u .
This page builds every symbol the parent note leans on, starting from nothing. Read top to bottom; each block earns the notation the next block uses. See the parent: Systems of first-order linear ODEs — matrix method .
′ and d t d
y ′ ( t ) means "how fast y is changing right now, as time t ticks forward." It is the slope of the graph of y at that instant. The symbol d t d y means the exact same thing — "d " is shorthand for "a tiny change in."
Look at the figure: the curve is the value y ( t ) ; the straight amber line just kissing it is the tangent, and its steepness is y ′ . If y is going up, y ′ > 0 ; flat means y ′ = 0 ; falling means y ′ < 0 .
Intuition Why the topic needs it
An ODE is a sentence about rates . "y ′ = a y " reads: the speed of y equals a times its current value. No derivative, no way to talk about change over time.
Definition The exponential
e a t
e is a fixed number (≈ 2.718 ). The function e a t is the one special curve whose slope at every instant equals a times its own height. In symbols: d t d e a t = a e a t .
That self-copying property is exactly the sentence y ′ = a y . So y = C e a t solves it, where C is the starting value y ( 0 ) .
Intuition Why the topic needs it
The matrix method is a bet: "the vector version should still be built from exponentials." Everything downstream is an attempt to make e λ t work when y becomes a whole vector. Deeper story: Matrix Exponential .
x
Bold x is a list of numbers stacked in a column , e.g. x = ( x 1 x 2 ) . Picture it as an arrow from the origin to the point ( x 1 , x 2 ) . The subscripts x 1 , x 2 are the individual "coordinates" — how far right, how far up.
When x depends on time, x ( t ) is a moving arrow — its tip traces a path. Then x ′ ( t ) is another arrow: the velocity , showing which way the tip is heading and how fast.
Intuition Why the topic needs it
A "system" means several quantities changing at once (two populations, two currents). Bundling them into one arrow x lets us write n equations as a single tidy line.
A and the product A v
A matrix A is a square grid of numbers . Feeding a vector v into it, A v , produces a new vector by a fixed recipe: each output coordinate is a weighted mix of the input coordinates. Geometrically, A stretches, rotates, or shears the arrow v into a different arrow.
For a 2 × 2 example,
A v = ( a c b d ) ( v 1 v 2 ) = ( a v 1 + b v 2 c v 1 + d v 2 ) .
In the figure a grey input arrow becomes a cyan output arrow — usually pointing somewhere else . That "somewhere else" is the whole difficulty: A mixes the coordinates together.
Intuition Why the topic needs it
x ′ = A x says: the velocity of the point is A applied to its position. The matrix is the "rule of the flow." Because A generally rotates arrows, the equations for x 1 and x 2 are tangled — that tangle is what we must undo.
Now the payoff of §4. Most arrows get twisted by A . But a few special arrows come out pointing the same way — only longer or shorter.
( λ , v )
A nonzero vector v is an eigenvector of A if A v lands on the same line as v — i.e. A v = λ v for some number λ , the eigenvalue . The eigenvector is the special direction ; the eigenvalue is how much it stretches (λ > 1 grows, 0 < λ < 1 shrinks, λ < 0 flips).
In the figure, the amber arrow is an eigenvector: after A acts, it still lies on the dashed line — just rescaled. The grey arrow is not special — it swings off its line.
Intuition Why the topic needs it
Along an eigenvector, the matrix A behaves like plain multiplication by the number λ . So the tangled system x ′ = A x becomes the scalar equation u ′ = λ u from §2 — which we already solved. Eigenvectors are the directions where the mess untangles. Full theory: Eigenvalues and Eigenvectors .
To find eigenvalues we rewrite A v = λ v as ( A − λ I ) v = 0 . Three symbols appear:
Definition Identity matrix
I
I is the "do-nothing" matrix: I v = v for every arrow. It has 1 s down the diagonal, 0 s elsewhere. We need it so that "λ v " can be written as a matrix acting on v , namely λ I v , making subtraction A − λ I legal.
Definition Singular matrix and the determinant
det
A matrix is singular if it squashes some nonzero arrow all the way down to the zero vector 0 — it flattens space. The determinant det ( M ) is a single number measuring how much M scales area. When det ( M ) = 0 , area is crushed to nothing: the matrix is singular.
The equation ( A − λ I ) v = 0 needs a nonzero v getting crushed to 0 — that happens exactly when det ( A − λ I ) = 0 . That is the characteristic equation .
Intuition Why the topic needs it
This determinant condition is the machine that spits out the eigenvalues λ . No det , no way to locate the special directions.
Sometimes the characteristic equation has no real roots — its solutions involve i .
Definition The imaginary unit
i and a complex number α + i β
i is the invented number with i 2 = − 1 . A number α + i β is a point in a plane : α steps right, β steps up. Adding an "up" component turns pure stretching into turning .
Euler's formula (see Euler's Formula ) ties this to rotation:
e ( α + i β ) t = e α t ( cos β t + i sin β t ) .
Read it as: e α t sets the size (grow if α > 0 , decay if α < 0 ), and cos β t , sin β t spin it around a circle at rate β .
Intuition Why the topic needs it
A complex eigenvalue α ± i β means the flow spirals : α = grow/decay, β = spin speed. That is why some phase portraits swirl. See Phase Portraits and Stability .
Definition Free constants
c 1 , c 2 , … and superposition
Because x ′ = A x is linear , if two arrow-paths each solve it, so does any weighted sum of them. The weights c 1 , c 2 , … are free constants — the solution is a whole family .
Definition Initial condition
x ( 0 ) = x 0
The value x 0 is where the point starts at t = 0 . Plugging t = 0 pins down the c i , selecting one path from the family.
Intuition Why the topic needs it
The general solution x = c 1 e λ 1 t v 1 + c 2 e λ 2 t v 2 is a superposition. The constants let it bend to any starting arrow.
Eigenvectors and eigenvalues
Characteristic equation det zero
Identity I and determinant
Ansatz e lambda t times v
Complex number i and Euler
Constants and superposition
Cover the right side and answer aloud — if any stumps you, reread that section.
What does y ′ mean in plain words? The instantaneous rate of change — the slope of the graph of y at that moment.
What is special about e a t ? Its slope always equals a times its own height, so it solves y ′ = a y .
What picture goes with a bold vector x ? An arrow from the origin to the point whose coordinates are x 1 , x 2 , … .
What does the matrix product A v do geometrically? Stretches, rotates, or shears the arrow v into a new arrow.
Define an eigenvector in one sentence. A nonzero arrow whose direction A leaves unchanged, only rescaling it by the eigenvalue λ .
Why do eigenvectors matter for solving the system? Along them the tangled system collapses to the scalar equation u ′ = λ u .
What is the identity matrix I for? It is the do-nothing matrix, letting us write λ v as λ I v so A − λ I makes sense.
When is a matrix singular, and how does det detect it? When it crushes some nonzero arrow to 0 ; this happens exactly when det = 0 .
What does a complex eigenvalue α ± i β tell you about the flow? α gives growth or decay, β gives the rotation speed — the trajectory spirals.
What do the constants c i do? They weight the independent solutions so the sum matches the chosen initial condition x ( 0 ) .