Find matrix $C$ if: $$ A = \begin{bmatrix}1&3&2\\-1&2&1\\0&1&0 \end{bmatrix} \space B = \begin{bmatrix}3&2&1\\1&1&1\\1&2&3 \end{bmatrix}, \space BC = A $$
I started off this question by attempting to find the inverse of $B$, but then I discovered that $B$ is not invertible. Is it still possible to isolate for $C$ and solve or is this answer no solution?
Just as the equation $B\mathbf x=\mathbf b$ has a solution iff $\mathbf b$ is an element of the column space of $B$, the equation $BC=A$ can be solved iff every column of $A$ is in the column space of $B$. So augment $B$ with $A$ and row-reduce: $$\left[\begin{array}{ccc|ccc} 3&2&1 & 1&2&3 \\ 1&1&1 & -1&2&1 \\ 1&2&3 & 0&1&0 \end{array}\right] \to \left[\begin{array}{ccc|ccc} 1&0&-1 & -2&3&2 \\ 0&1&2 & 1&-1&-1 \\ 0&0&0 & 5&-5&1 \end{array}\right].$$ No column of $A$ is in $B$’s column space, so there’s no solution. Perhaps there’s an error in the problem or you’ve misread it.