find the solution to the problem $y'=\begin{pmatrix}1 & 1\\0 & 1\end{pmatrix}y, y(0)=\begin{pmatrix}4\\0\end{pmatrix}$
I know i have to find the eigenvalues and eigenvectors of the matrix $A=\begin{pmatrix}1 & 1\\0 & 1\end{pmatrix}$
there's only one eigenvalue which is $1$ and only "one" eigenvector and we can choose $\begin{pmatrix} 1\\0\end{pmatrix}$
but now I dont know what to do.
what comes next?
I should say that I know how to find the exponencial of a matrix and also I want to know how to solve this kind of problem in general, so techniques to solve this particular one that wouldnt work on a more general problem dont help me much.
Note: this method is not a general one, but is probably easier for the particular example provided.
In this case, you do not need to diagonalize the matrix. Indeed, if we write $y=(y_1,y_2)$, then the system is simply: $$ \left\{\begin{aligned} y_1'&=y_1+y_2\\ y_2'&=y_2 \end{aligned} \right. $$ with initial conditions $y_1(0)=4$, and $y_2(0)=0$. Notice that the second equation is easy to solve: $$ y_2(x)=C\exp(x). $$ Since $y_2(x)=0$, we get $y_2=0$, thus the first equation reduces to $y_1'=y_1$. Finally, $$ y(x)=\begin{pmatrix}4\exp(x) \\ 0\end{pmatrix}. $$