This is in relation to finding all basic feasible solutions where $A =$$$\begin{pmatrix} 1 & 2 & 2 & 1 & 0 \\ 1 & 2 & 1 & 1 & 1 \\ 3 & 6 & 2 & 1 & 0 \end{pmatrix}.$$
and $b =$ $$\begin{pmatrix} 12\\ 18 \\ 36 \end{pmatrix}.$$
I know that to find the BFS, we must first all determine sets of $m = 3$ columns that are linearly independent. I am aware that they will be linearly independent if I can reduce the matrix consisting of chosen 3 column vectors to the identity matrix. However, this is rather painstaking, especially under exam conditions. Is there any other way to determine these?
First we can acknowledge that since the matrix is not square we are guaranteed linear dependence. One way to determine which sets of vectors are dependent would be to find $3\times 3$ subdeterminants of your matrix. Of course this can be computationally intensive too if you're trying to find all linearly dependent sets since this would require ${5\choose 3} = 10$ computations in this particular instance. The potential advantage is that if you're only looking for one set of linearly dependent vectors, you may be able to stop early since it's unlikely that you would need to exhaust all possibilities before finding a linearly dependent set.