I have a Matrix:
$$A= \pmatrix{1 & -2 & 1 \\ -1 & 3 & 2 \\ 0 & 1 & 4}$$
My task is to find $X$ from:
$$A * X = \pmatrix{4 & 0 & -3 & 1 \\ 1 & 5 & 2 & -1 \\ 0 & 1 & -1 & 2}$$
My problem is, that i dont know how to do this. I mean i could build several equations like:
$$1 * x1,1 -2 *x1,2 + 0* x1,3 = 4$$
But i think this would take to much time! So what could i do?
The solution for $X$ should be:
$$X = \pmatrix{49 & 38 & -5 & -13 \\ 20 & 17 & -1 & -6 \\ -5 & -4 & 0 & 2}$$