Mathwords logoMathwords

Nonsingular Matrix — Definition, Formula & Examples

A nonsingular matrix is a square matrix whose determinant is not zero, which guarantees that its inverse exists. It is also called an invertible or non-degenerate matrix.

A square matrix AA of order n×nn \times n is nonsingular if and only if det(A)0\det(A) \neq 0, or equivalently, if there exists a matrix A1A^{-1} such that AA1=A1A=InAA^{-1} = A^{-1}A = I_n, where InI_n is the n×nn \times n identity matrix.

Key Formula

A is nonsingular    det(A)0    A1 existsA \text{ is nonsingular} \iff \det(A) \neq 0 \iff A^{-1} \text{ exists}
Where:
  • AA = A square matrix of order n × n
  • det(A)\det(A) = The determinant of A
  • A1A^{-1} = The multiplicative inverse of A

How It Works

To determine whether a matrix is nonsingular, compute its determinant. If the determinant is nonzero, the matrix is nonsingular and you can find its inverse. A nonsingular matrix has full rank, meaning all its rows (and columns) are linearly independent. In the context of a linear system Ax=bAx = b, a nonsingular coefficient matrix AA guarantees exactly one solution: x=A1bx = A^{-1}b.

Worked Example

Problem: Determine whether the matrix A is nonsingular, where A = [[2, 3], [1, 4]].
Compute the determinant: For a 2×2 matrix [[a, b], [c, d]], the determinant is ad − bc.
det(A)=(2)(4)(3)(1)=83=5\det(A) = (2)(4) - (3)(1) = 8 - 3 = 5
Check if the determinant is nonzero: Since det(A) = 5 ≠ 0, the matrix is nonsingular and its inverse exists.
A1=15[4312]A^{-1} = \frac{1}{5}\begin{bmatrix} 4 & -3 \\ -1 & 2 \end{bmatrix}
Answer: A is nonsingular because det(A) = 5 ≠ 0. Its inverse is (1/5)[[4, −3], [−1, 2]].

Why It Matters

Nonsingularity is the key condition for solving linear systems uniquely. In engineering and data science, checking whether a matrix is nonsingular determines if a system of equations has a single solution. Techniques like Cramer's Rule and computing matrix inverses require the coefficient matrix to be nonsingular.

Common Mistakes

Mistake: Assuming a matrix with no zero entries must be nonsingular.
Correction: A matrix can have all nonzero entries yet still be singular. For example, [[1, 2], [2, 4]] has det = 0 because the rows are proportional. Always compute the determinant to check.