Say we suspect the columns of a matrix are independent and want to verify that fact quickly by hand. What is the best way to do it?
I'm currently studying MITx 18.033 where they recommend checking if the nullspace is $\{\mathbf 0\}$ by reducing into row echelon form, but how can I check quickly (ideally in my head for a small matrix such as below)?
$$ \begin{pmatrix} 2 & 1 & 9 \\ 3 & 2 & 11 \\ -1 & -3 & 8 \\ 4 & 6 & -4 \end{pmatrix} $$
I suspect columns are independent iff any 3 $2 \times 2$ submatrices with distinct rows and distinct columns are independent. This allows us to prove a matrix is independent by finding those submatrices:
$$ \begin{pmatrix} 2 & 1 \\ 3 & 2 \end{pmatrix}, \ \begin{pmatrix} 2 & 11 \\ -3 & 8 \end{pmatrix}, \ \begin{pmatrix} 2 & 9 \\ -1 & 8 \end{pmatrix} $$
Is this correct? If so, why? If not, how do I prove a matrix's columns are independent quickly?