Let $A=\left[\begin{matrix}0&0&0\\-1&0&0\\0&-1&0\end{matrix}\right]$ and $B=\left[\begin{matrix}4&1\\5&2\\6&3\end{matrix}\right]$ verify the matrix equation $X=AX+B$
What are the dimensions of $X$?
Find the matrix $X$. Is the matrix you found the unique solution of the equation?
Can you please discuss how to answer this type of question, I already know that $X$ has to be $3\times 2$ and this is clear through the equation given $X = AX + B$
Please discuss the second part of the question about how we could determine Matrix $X$
Start by moving the term $AX$ to the other side of the equation, producing $(I-A)X=B$. Since each column of $B$ is the result of multiplying the corresponding column of $X$ by $I-A$, you have a series of systems of linear equations to solve for the columns of $X$. These can all be solved simultaneously by row-reducing an augmented matrix just as you would for each individual system of equations.
In this case, the augmented matrix to be reduced is $$\left[\begin{array}{ccc|cc} 1&0&0 & 4&1 \\ 1&1&0 & 5&2 \\ 0&1&1 & 6&3 \end{array}\right].$$ As always, if you end up with a row that’s zero on the left side but non-zero on the right, then there’s no solution. If there are no zero rows, the solution is unique, and if there is an all-zero row, there is an infinite number of solutions.