What is the solution for a system of ODEs with a matrix coefficient?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 2K views
kostoglotov
Messages
231
Reaction score
6
I know how to solve [tex]\frac{d\vec{u}}{dt} = A\vec{u}[/tex], I was just watching a lecture, and the lecturer related that solving that equation is pretty much a direct analogy to [tex]\vec{u} = e^{At}\vec{u}(0)[/tex], in so far as all we need to do after that is understand exactly what it means to take the exponential of a matrix, which is fine...

My question is this, do I solve [tex]\frac{d^2\vec{u}}{dt^2} = A\vec{u}[/tex] with [tex]\vec{u}=A^{-1}e^{At}\frac{d\vec{u}}{dt}(0)[/tex]?

edit:

OR do I need to go along the lines

[tex]\frac{d^2\vec{u}}{dt^2} = \lambda^2\vec{u} = A\vec{u}[/tex]

and solve

[tex](A - \lambda^2 I)\vec{u}=\vec{0}[/tex]

?
 
Last edited:
Physics news on Phys.org
kostoglotov said:
I know how to solve [tex]\frac{d\vec{u}}{dt} = A\vec{u}[/tex], I was just watching a lecture, and the lecturer related that solving that equation is pretty much a direct analogy to [tex]\vec{u} = e^{At}\vec{u}(0)[/tex], in so far as all we need to do after that is understand exactly what it means to take the exponential of a matrix, which is fine...

My question is this, do I solve [tex]\frac{d^2\vec{u}}{dt^2} = A\vec{u}[/tex] with [tex]\vec{u}=A^{-1}e^{At}\frac{d\vec{u}}{dt}(0)[/tex]?

edit:

OR do I need to go along the lines

[tex]\frac{d^2\vec{u}}{dt^2} = \lambda^2\vec{u} = A\vec{u}[/tex]

and solve

[tex](A - \lambda^2 I)\vec{u}=\vec{0}[/tex]

?
I haven't thought about this in quite a while.
If you had a regular ODE of the form u' = au, or u' - au = 0, the characteristic equation would be r - a = 0, so the solution would be u = Ceat, similar to your first order example above.

If you had u'' = λ2u, or u'' - λ2u = 0, the characteristic equation would be r2 - λ2 = 0, or r = ±λ. The solution would be u = C1eλt + C2e-λt.

Your example, with a system of ODEs, will have a solution that is analogous to the above, with exponentials involving the matrix.