I have to calculate matrix $X$ in expression $X + B = (A-B)X$.
$$ A=\left[ \begin{array} k1 & -2 & 3\\ 2 & 4 &0\\ -1 & 2 & 1\\ \end{array} \right] $$
$$ B=\left[ \begin{array} k0 & 1 & 3\\ 2 & -3 &1\\ 1 & 3 & -1\\ \end{array} \right] $$
I have no idea how to even begin here, I know basic operations with matrices and inverses, but I'm pretty much clueless here.. How do I solve this?
Use linearity of matrix multiplication: $$X + B = (A-B)X \\ B = (A-B)X - X = (A-B-I)X \\ X = (A-B-I)^{-1}B$$ Where $I$ is the $3\times 3$ identity matrix.
If you want to check your result, doing this calculation results in $$X = \frac16 \pmatrix{-9&-5&-15\\0&-2&-6\\-12&6&-42}$$