Hi guys I was solving this fairly simple system, but for final answer I got something weird and just wanted to check if this was normal. $$ A=\begin{pmatrix} 0 & 0\\ 1 & t\\ \end{pmatrix} $$
and $\overline{x}^T = (x(t), y(t))$ then we want to solve $\dot{\overline{x}}=A\overline{x}$
what I did is treat them as two equations
\begin{align*} x'=0\\ y'=x+yt \end{align*}
From the first we got $x=c$ where $c$ is a constant then we can plug that in the second equation
$$y'=c+yt$$
then we can solve this using integration factor $u = e^{-1/2 t^2}$.
Thus we get
$$e^{-1/2 t^2}y' -te^{-1/2 t^2}y =c e^{-1/2 t^2}$$
Then we can integrate to obtain $e^{-1/2 t^2}y = \int c e^{-1/2 t^2}$. I think this looks weird because I cannot solve the integral and was hoping someone more experience take a look and tell me if this seems correct. Thank you!