Singular Matrix – Understanding Linear Dependency and Determinant Issues

determinantmatrixsingular

Singular matrix is defined as a square matrix with determinant of zero. I am aware that linear dependency among columns or rows leads to determinant being equal to zero (e.g. one column is a linear composite of other columns).

I am interested whether other conditions exist, except for linear dependency, that can lead to determinant of 0 in Singular Matrix.

Excuse me if I am missing on something obvious, as I am somewhat of a beginner.

Best Answer

I think you are operating on an incorrect understanding about the relationship between linear dependence and singularity. Many matrices are not square, and thus do not have a determinant, yet they can have columns that are linearly dependent or independent. In general, if the columns of the matrix $\mathbf{x}$ are linearly dependent then the determinant of the Gramian matrix of $\mathbf{x}$ is zero. That is, you have:

$$\det (\mathbf{x}^\text{T} \mathbf{x}) = 0 \quad \quad \iff \quad \quad \text{columns of matrix } \mathbf{x} \text{ are linearly dependent}.$$

This relationship holds for matrices of any dimension. However, in the special case where $\mathbf{x}$ is a square matrix, you then have $\det (\mathbf{x}^\text{T} \mathbf{x}) = (\det \mathbf{x})^2$, which means that:

$$\quad \quad \quad \quad \det (\mathbf{x}) = 0 \quad \quad \iff \quad \quad \text{columns of square matrix } \mathbf{x} \text{ are linearly dependent}.$$

Related Question