I want to find a matrix $A \in \mathbb{C}^{2x4}$ and $b \in\mathbb{C}^{2}$ the solution of $Ax=b$ is: $$L = \left\{\pmatrix{1\\2\\0\\-1} + x_1\pmatrix{1\\-2\\2\\1} + x_2\pmatrix{2\\2\\-1\\1}\right\}$$
Therefore $\dim(A) = 4$, $\dim(\ker(A)) = 2$, $\dim(\operatorname{im}(A)) = 2$.
$A$ and $b$ have the following format:
$$ A= \begin{pmatrix} a_{11} & a_{12} & a_{13} & a_{14}\\ a_{21} & a_{22} & a_{23} & a_{24} \\ \end{pmatrix} b= \pmatrix{b_1\\b_2} $$
My idea is to solve the following equation for A and b:
$$A\,\pmatrix{1 + x_1 + 2x_2\\2 - 2x_1+ 2x_2\\2x_1 - x_2\\-1+x_1 + x_2} = b$$ Is this the right way to start? I get then a linear equation with 12 unknowns and only 2 equations. I know that there must be many solutions. Do I simply define some of them as 1 or 0?