My Problem is this given System of differential equations.
$$y_{1}^{\prime}=5y_{1}+2y_{2} \\ y_{2}^{\prime}=-2y_{1}+y_{2}$$
I am looking for the solution. According to one of my earlier Questions, I tried the method on my own. Now i fear the solution could be wrong. (especially the eigenvectors)
My Approach was: again, i analyze, it must be a ordinary, linear System of equations, with both being of first-order. Than i built the corresponding Matrix as follows:
$$\underbrace{\pmatrix{ y_1^{\prime} \\ y_2^{\prime}}}_{\large{ {\vec y^{\prime}}}} = \underbrace{\pmatrix{5 & 2 \\ -2 & 1}}_{\large{\mathbf A}}\underbrace{\pmatrix{y_1\\y_2}}_{\large{\vec y}}$$
that's why:
$$\vec y^{\prime} = \pmatrix{5 & 2 \\ -2 & 1}\vec y$$
Then I determined the eigenvalues:
they are $r_1 = 3$ and $r_2=3$
Knowing them, I can build the corresponding eigenvectors:
they are $\vec v_1 = \pmatrix{ -1 \\ +1}$ and $\vec v_2 = \pmatrix{ 0 \\ 0}$
Now i plug into the equation:
$$\vec{x} = c_1e^{r_1t}\vec{v_1}+c_2e^{r_2t}\vec{v_2} \\ \vec{x} = c_1e^{3t}\pmatrix{-1 \\ 1}+c_2e^{3t}\pmatrix{0 \\ 0}$$
this lead to my result:
$$y_1 = -c_1e^{3t} + 0c_2e^{3t}\\ y_2 = c_1e^{3t} + 0c_2e^{3t} \\ \\ y_1 = -c_1e^{3t}\\ y_2 = c_1e^{3t}$$
But I doubt it's correct. My suspect are the eigenvectors, I really don't know if they are correct. And this could have lead to a wrong solution.
P.S.: Edits were made to improve language and latex
Hint:$$X '(t)=AX(t)$$ if you have repeated eigen value like $ c $ and $v $ is eigen vector correspond to $c $ then general solution is $$\large{X(t)=e^{ct}v}$$ and here solution is:$$\large{ X(t) = ce^{3t}\pmatrix{-1 \\ 1}}$$