Determinants
"If the determinant is zero, the matrix is singular — no inverse exists. The system is either inconsistent or has infinite solutions."
1. Chapter Overview
A DETERMINANT is a SCALAR value that can be computed from a square matrix. This chapter covers: computing determinants (expansion, properties), the RELATIONSHIP between determinants and matrices, CRAMER'S RULE for solving systems of linear equations, and finding the INVERSE of a matrix using the adjoint method (A⁻¹ = adj(A)/|A|, provided |A| ≠ 0).
2. Computing Determinants
For a 3×3 Matrix (Expansion)
|A| = a₁₁(cofactor of a₁₁) + a₁₂(cofactor of a₁₂) + a₁₃(cofactor of a₁₃)
Cofactor
- Minor Mᵢⱼ = determinant of submatrix after removing row i, column j
- Cofactor Aᵢⱼ = (-1)ⁱ⁺ʲ × Mᵢⱼ
3. Properties of Determinants
| Property | What It Means |
|---|---|
| ** | A |
| If two rows/columns are interchanged | Sign CHANGES |
| If two rows/columns are identical | |
| If each element of a row is multiplied by k | Determinant is multiplied by k |
| If a row is added to a multiple of another row | Determinant UNCHANGED |
4. Area of a Triangle Using Determinants
- Area = ½ |det of the 3×3 matrix formed by vertices|. If area = 0 → points are COLLINEAR.
5. Adjoint and Inverse
- Adjoint of A = Transpose of the cofactor matrix
- A⁻¹ = adj(A) / |A| — provided |A| ≠ 0
- A × adj(A) = adj(A) × A = |A| × I
6. Solving Linear Equations — Cramer's Rule / Matrix Method
- Write system as AX = B. If |A| ≠ 0 → unique solution: X = A⁻¹B.
- Cramer's Rule: xᵢ = |Aᵢ|/|A|, where Aᵢ replaces column i of A with B.
7. Exam Focus
- Determinant expansion. Properties.
- Adjoint and inverse: A⁻¹ = adj(A)/|A|. Condition: |A| ≠ 0.
- Solving AX = B. Consistent if |A| ≠ 0 (unique solution).
- Area of triangle using determinants.
8. Conclusion
Determinants are the GATEWAY to solving systems:
- |A| ≠ 0: Matrix is INVERTIBLE. System has a UNIQUE solution.
- |A| = 0: Matrix is SINGULAR. No inverse. System has either NO solution or INFINITE solutions.
- 'The determinant is the single most important number associated with a square matrix.'
