[Math] How to Tell If Matrices Are Linearly Independent

linear algebramatrices

If I have two matrices, for example: $\begin{pmatrix}1&0\\2&1 \end{pmatrix}$ and $\begin{pmatrix} 1&2\\4&3\end{pmatrix},$ how do I determine if they are linearly independent or not in $\mathbb{R}^4$?

I am familiar with checking for independence with vectors, such as by checking the determinant to be non-zero, or using the definition of linear independence such as $a(1,2)+b(2,3)=(0,0)$ and checking if $a=b=0$ is the only solution.

Best Answer

To show if two matrices are independent, you do exactly what you always do: if your matrices are $A$ and $B$, you want to show that $\alpha A+\beta B=0$ for $\alpha,\beta\in\mathbb{R}$ (or $\mathbb{C}$, depending) if and only if $\alpha=\beta=0$.

Related Question