How to solve ${\bf x}' = A{\bf x}$ with $A=\begin{pmatrix} -3 & 2 \\ -2 & 1 \\ \end{pmatrix}$?
Well, so first I got the eigenvalues which both are $-1$, and eigen vector is $(1,1)$. Then I wrote the answer as ${\bf x}(t) = c_1e^{-t}(1,1) + c_2e^{-t}(2,2)$
In the answer It's written like that:
$x = (C_1+2C_2t)e^{-t}$
$y = (C_1+C_2+2C_2t)e^{-t}$
Can someone explain please how they got to that answer?
Edit: Like I written, I can show that $x = (C_1+2C_2t)e^{-t}$, but when I'm trying to show $y$, I can't add the $+C_2$ there.
There is a systematic way to deal with the ODE ${\bf x}'=A{\bf x}$ when $A$ is not diagonalizable. Any "reasonable" ODE textbook should contain a section about this topic.
You might want to try first a "simpler" version of your problem:
${\bf x}'=A{\bf x}$ where $A= \begin{pmatrix} 1&1\0&1 \end{pmatrix}. $
– Dec 23 '16 at 14:46