Exact problem statement
Solve the system $\left\{\begin{matrix} x_{1}'(t)=3x_{1}(t)-2x_{2}(t)+e^{2t},x_{1}(0)=a & \\ x_{2}'(t)=4x_{1}(t)-3x_{2}(t),x_{2}(0)=b & \end{matrix}\right.$
by using the method of diagonalization. Hint: Substitution $x=Tz$
Progress
I have no problem solving the system
$\left\{\begin{matrix} x_{1}'(t)=3x_{1}(t)-2x_{2}(t),x_{1}(0)=a & \\ x_{2}'(t)=4x_{1}(t)-3x_{2}(t),x_{2}(0)=b & \end{matrix}\right.$
I want to rewrite as $\boldsymbol{x'=Ax}$But I don't know how to proceed when $e^{2t}$ is added to the first equation. $T$ is probably the matrix with eigenvectors as columns but how does one set up these(and finding the eigenvectors) when $\boldsymbol{A=\begin{Bmatrix} 3 &-2 &? \\ 4&-3 &0? \end{Bmatrix}}$?
We have:
$$x'(t) = \begin{bmatrix}x'_1(t)\\x'_2(t)\end{bmatrix} = Ax(t) + f(t) = \begin{bmatrix}3 & -2\\4 & -3\end{bmatrix}x(t) + \begin{bmatrix}e^{2t}\\0\end{bmatrix}, x(0) = \begin{bmatrix}a\\b\end{bmatrix}$$
Diagonalize (not always possible) the matrix $A$ and arrive at:
$$A = TDT^{-1} = \begin{bmatrix}1 & 1\\2 & 1\end{bmatrix}\begin{bmatrix}-1 & 0\\0 & 1\end{bmatrix}\begin{bmatrix}-1 & 1\\2 & -1\end{bmatrix}$$
We want to use $x = Tz \implies z=T^{-1}x \implies z'=T^{-1}x'$, which will allow us to decouple the equations. We have:
These equations are now decoupled and more easily solved. We have:
$$z'_1(t) = -z_1(t)-e^{2t}, z_1(0) = -a + b \\ z'_2(t) = z_2(t) + 2 e^{2t}, z_2(0) = 2a-b$$
You can now find $z(t)$ and then write:
$$x(t) = Tz(t)$$
Can you continue?
The solution will be:
$$x(t) = \begin{bmatrix}x_1(t)\\x_2(t)\end{bmatrix} = \begin{bmatrix}e^{-t} \left(a \left(2 e^{2 t}-1\right)+b \left(-e^{2 t}\right)+b\right)\\e^{-t} \left(2 a \left(e^{2 t}-1\right)-b \left(e^{2 t}-2\right)\right)\end{bmatrix}$$