What is a Determinant?
A determinant is a special number associated with every square matrix. It is a scalar value computed from the elements of a matrix and encodes important properties about the matrix โ such as whether the matrix has an inverse.
Determinant of a matrix A is written as det(A) or |A|.
For every square matrix A, a unique real number is associated called the determinant of A, denoted by det(A) or |A|. Only square matrices have determinants.
Scalar Output
A determinant always produces a single number (scalar), not a matrix.
Square Matrices Only
Determinants are defined only for square matrices (n ร n), not rectangular ones.
Key Property
If |A| โ 0, the matrix is called non-singular and has an inverse.
Determinant of 1ร1 and 2ร2 Matrices
Order 1ร1: For a 1ร1 matrix A = [a], the determinant is simply the element itself.
Order 2ร2: For a 2ร2 matrix, the determinant is the difference of products of diagonals.
Identify elements: a = 3, b = 4, c = 5, d = 2
Apply formula: |A| = ad โ bc = (3ร2) โ (4ร5)
|A| = 6 โ 20 = โ14
|A| = 6x โ 6 = 0
6x = 6 โ x = 1
Determinant of a 3ร3 Matrix
For a 3ร3 matrix, we use expansion along the first row (also called Laplace's expansion).
โ aโโ(aโโaโโ โ aโโaโโ)
+ aโโ(aโโaโโ โ aโโaโโ)
Signs follow the pattern +, โ, + when expanding along the first row. This alternating sign pattern is crucial โ don't miss it!
Expand along Row 1: |A| = 1ยท|5,6;8,9| โ 2ยท|4,6;7,9| + 3ยท|4,5;7,8|
= 1ยท(45โ48) โ 2ยท(36โ42) + 3ยท(32โ35)
= 1ยท(โ3) โ 2ยท(โ6) + 3ยท(โ3)
= โ3 + 12 โ 9 = 0
When |A| = 0, the matrix is singular (non-invertible). The rows (or columns) are linearly dependent.
Singular and Non-Singular Matrices
| Property | Singular Matrix | Non-Singular Matrix |
|---|---|---|
| Determinant | |A| = 0 | |A| โ 0 |
| Inverse | Does NOT exist | Exists (Aโปยน) |
| Rows/Columns | Linearly dependent | Linearly independent |
| System of equations | No unique solution | Unique solution exists |
Important Results to Remember
โข For scalar k and matrix A of order n: |kA| = kโฟ|A|
โข |AB| = |A|ยท|B| (product rule)
โข |Aแต| = |A| (determinant of transpose equals determinant)
โข If any row or column is zero โ |A| = 0
โข If any two rows/columns are identical โ |A| = 0