Given the following ode system
$\begin{cases}tx_1'=2x_2+2x_3+t^3e^t\\tx_2'=-x_1+3x_2+x_3+t^4\\tx_3'=-x_1+x_2+3x_3+t^3e^t\end{cases}$
and $2$ solutions of the system $$u_{(1)}=\begin{pmatrix}(a+b)t^2\\at^2\\bt^2\end{pmatrix},\quad u_{(2)}=\begin{pmatrix}2\ln t+1\\ \ln t+1\\\ln t+1\end{pmatrix}$$
What is the system's general solution ?
Attempt
I think it is quite clear that some sort of parameters variation is required due to given solutions. The only problem is that I am not sure how to approach this solution.
I tried to develop some sort of a matrix $$\psi(t)=\begin{pmatrix}(a+b)t^2&2\ln t+1\\at^2&\ln t+1\\bt^2&\ln t+1\end{pmatrix}$$ such that for some $v=\begin{pmatrix}v_1\\v_2\\v_3\end{pmatrix}$ fulfills $\psi(t)v'(t)=\begin{pmatrix}t^2e^t\\t^3\\t^2e^t\end{pmatrix}$;
the same method we solve linear ode systems, but clearly this matrix multipication is undefined.
How should I approach this? Thank you very much!
The system matrix $$A=\pmatrix{0&2&2\\-1&3&1\\-1&1&3}$$ has the characteristic polynomial $$ \det(A-\lambda I) %=\det\pmatrix{-λ&2&2\\-1&3-λ&1\\-1&1&3-λ} =-λ(3-λ)^2-4+λ+4(3-λ) \\ =-λ^3+6λ^2-12λ+8=(-λ+2)^3 $$ so that substituting $u_k=x_k/t^2$, $u_k'=(tx_k'-2x_k)/t^3$, results in the system $$ \left\{\begin{aligned} tu_1'&=-2u_1+2u_2+2u_3+te^t\\ tu_2'&=-u_1+u_2+u_3+t^2\\ tu_3'&=-u_1+u_2+u_3+te^t \end{aligned}\right. $$ As one can see, the homogeneous part is always a multiple of $v=-u_1+u_2+u_3$ with $$ tv'=t^2\implies v=\frac12t^2+c $$ and consequently \begin{align} tu_1'&=2v+te^t&\implies u_1 &= \frac12t^2+2c\ln t+e^t+d_1\\ tu_2'&=v+t^2&\implies u_2&=\frac34t^2+c\ln t+d_2\\ tu_3'&=v+te^t&\implies u_3&=\frac14t^2+c\ln t+e^t+d_3 \end{align} with $c=-d_1+d_2+d_3$. With setting $d_2=a+c$, $d_3=b+c$, $d_1=d_2+d_3-c=a+b+c$ one gets expressions close to those you cited, but with extra terms.