Linear Independence
a=Transpose[{{1,0,3,0},{0,1,-6,1},{0,2,1,-1}}];
MatrixForm[a]
NullSpace[a]
There is no solution (other than the trivial one (0,0,0) ) so the vectors are linearly independent.
To see if the vectors (1,-9), (4,5), and (2,-6) are linearly independent in R2:
m=Transpose[{{1,-9},{4,5},{2,-6}}];
MatrixForm[m]
NullSpace[m]
They are not! In fact, -34(1,-9)-12(4,5)+41(2,-6)=(0,0). If you had linear algebra, you knew already that the THREE vectors could not be linearly independent in TWO dimensional space.