I have to find all left inverses of a matrix
$$A = \begin{bmatrix} 2&-1 \\ 5 & 3\\ -2& 1 \end{bmatrix}$$
I created a matrix to the left of $A$,
$$\begin{bmatrix} a &b &c \\ d &e &f \end{bmatrix} \begin{bmatrix} 2&-1 \\ 5 & 3\\ -2& 1 \end{bmatrix} = \begin{bmatrix} 1&0 \\ 0&1 \end{bmatrix}$$
and I got the following system of equations:
\begin{array} {lcl} 2a+5b-2c & = & 1 \\-a+3b+c & = & 0 \\ 2d+5e-2f & = & 0 \\ -d+3e+f & = & 1 \end{array}
After this step, I am unsure how to continue or form those equations into a solvable matrix, and create a left inverse matrix from the answers of these equations.
Hint:
solve the first two equations using $c$ as a parameter and find $b=\frac1{11}$ , $a=c+\frac3{11}$
do the same in last two equation and you have the result.