I'm working on a problem that asks for all the real number vectors $b_1$,$b_2$ such that
$$ \begin{pmatrix} 4 & 1\\ 12 & 3\\ \end{pmatrix} * \begin{pmatrix} x \\ y \\ \end{pmatrix} = \begin{pmatrix} b_1\\ b_2\\ \end{pmatrix} $$
So far, I have reduced the matrix to $$ \begin{pmatrix} 4 & 1 & b_1 \\ 0 & 0 & -3b_1 + b_2 \\ \end{pmatrix} $$
How do I solve from here?
Thank you all!