I am completely stuck on this:
The 2nd order system should be in this form: $\frac{dx}{dt}=Ax$ where A is the system matrix.
$$x(t) = \begin{pmatrix} 2-e^{-t} \\ 1+2e^{-t} \end{pmatrix}$$
$$x(t=0) =: x_0 = \begin{pmatrix} 1 \\ 3 \end{pmatrix}$$
I have to obtain the system matrix A and the transition matrix $\Phi(t)$ But I have no clue what I can do here. I feel like I have too less information to solve this.
I was experimenting with $$\Phi(0) = \begin{pmatrix} 1&0 \\ 0&1 \end{pmatrix}$$ and $$x(t)=\Phi(t)x_0$$ but I am stuck here.
Any help appreciated.
edit
$$ \pmatrix{\frac{s+2}{s+1}\\ \frac{3s+1}{s+1}}-A\pmatrix{\frac{s+2}{s(s+1)}\\ \frac{3s+1}{s(s+1)}} =\pmatrix{1\\3} \implies \pmatrix{\frac{1}{s+1}\\ \frac{-2}{s+1}}=A \pmatrix{\frac{s+2}{s(s+1)}\\ \frac{3s+1}{s(s+1)}} \implies \pmatrix{1\\ -2}=A \pmatrix{1 + \frac{2}{s}\\ 3 + \frac{1}{s}} $$
The response of an autonomous system is indeed defined by the matrix exponential - transition matrix or the Laplace transformed version of the differential function which can be obtained through $\mathcal{L}(\dot x) = sX(s)-x(0)$ where $s$ being the indeterminate of the Laplace transform: $$ x(t) = e^{At} x(0) \text{ or}\quad X(s) = (sI-A)^{-1}x(0) $$ From this and after applying Laplace transform to the given time trajectories, we have, $$ \pmatrix{\frac{2}{s} - \frac{1}{s+1}\\\frac{1}{s}+\frac{2}{s+1}} = \pmatrix{\frac{s+2}{s(s+1)}\\ \frac{3s+1}{s(s+1)}}=(sI-A)^{-1} \pmatrix{1\\3}$$ Then, $$ (sI-A)\pmatrix{\frac{s+2}{s(s+1)}\\ \frac{3s+1}{s(s+1)}} =\pmatrix{1\\3} \implies \pmatrix{\frac{1}{s+1}\\\frac{-2}{s+1}}= A\pmatrix{\frac{s+2}{s(s+1)}\\ \frac{3s+1}{s(s+1)}}$$ Let $$A = \pmatrix{a &b\\c&d}$$ then $a(s+2)+b(3s+1) = s$ and $c(s+2) + d(3s+1) = -2s$. (Note that $s$ is cancelled out). These leads to $$ \pmatrix{1 &3\\2 &1}\pmatrix{a\\b} = \pmatrix{1\\0}\ , \ \pmatrix{1 &3\\2 &1}\pmatrix{c\\d} = \pmatrix{-2\\0} $$
Solving for $a,b,c,d$ gives, $$ A = \pmatrix{\frac{-1}{5} &\frac{2}{5}\\\frac{2}{5} &\frac{-4}{5}} $$