šÆ Key Points
- Determinant of 2Ć2: |a b; c d| = ad ā bc
- Determinant of 3Ć3 (expansion along row 1): aāā(Māā) ā aāā(Māā) + aāā(Māā) where Mᵢⱼ = 2Ć2 minor
- Cofactor Cᵢⱼ = (ā1)i+j Ć Mᵢⱼ (minor with sign); expansion = Ī£ aᵢⱼ Cᵢⱼ along any row or column
- Singular matrix: det(A) = 0 (no inverse); Non-singular: det(A) ā 0 (inverse exists)
- Adjoint: adj(A) = transpose of cofactor matrix; Aā»Ā¹ = adj(A)/det(A)
- det(AB) = det(A)Ā·det(B); det(Aāæ) = (det A)āæ; det(kA) = kāæ det(A) for nĆn matrix
- Area of triangle with vertices (xā,yā),(xā,yā),(xā,yā) = ½|det| (absolute value)
- Cramer's rule: for AX=B, xā=Īā/Ī, xā=Īā/Ī (Ī=det(A), Īįµ¢=det with i-th column replaced by B)
Properties of Determinants
- Interchange two rows/columns ā determinant changes sign
- Two identical rows/columns ā determinant = 0
- Multiply one row/column by k ā determinant multiplied by k
- Add scalar multiple of one row to another ā determinant unchanged
- det(A) = det(Aįµ) - transpose doesn't change determinant
Worked Example: Evaluate 3Ć3 Determinant
Evaluate: |1 2 3; 4 5 6; 7 8 9|
Expand along R1: 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
Note: this is 0 because the rows are in arithmetic progression (linearly dependent).
Worked Example: Inverse using Adjoint
Find Aā»Ā¹ for A = |2 1; 5 3|. det(A) = 6ā5 = 1. adj(A) = |3 ā1; ā5 2|. Aā»Ā¹ = adj(A)/1 = |3 ā1; ā5 2|.
Verify: AĀ·Aā»Ā¹ = |2 1; 5 3|Ā·|3 ā1; ā5 2| = |6ā5, ā2+2; 15ā15, ā5+6| = |1 0; 0 1| = I ā
Minors and Cofactors
- Minor Mᵢⱼ of element aᵢⱼ is the determinant left after deleting row i and column j.
- Cofactor Cᵢⱼ = (ā1)i+j Mᵢⱼ - the minor with a sign from the checkerboard pattern (+ ā + / ā + ā / + ā +).
- Expansion along any row or column gives the same value: det(A) = aįµ¢āCįµ¢ā + aįµ¢āCįµ¢ā + aįµ¢āCįµ¢ā.
- Key identity: the sum of products of one row's elements with the cofactors of a DIFFERENT row is 0 (e.g. aāāCāā + aāāCāā + aāāCāā = 0).
Area of a Triangle
The area of a triangle with vertices (xā,yā), (xā,yā), (xā,yā) is:
Area = ½ |xā(yāāyā) + xā(yāāyā) + xā(yāāyā)|
written as the determinant ½ |xā yā 1; xā yā 1; xā yā 1| (absolute value, since area is non-negative). The three points are collinear exactly when this determinant equals 0.
Adjoint and Inverse of a Matrix
- adj(A) is the transpose of the cofactor matrix.
- Fundamental relation: A(adj A) = (adj A)A = det(A) I.
- If det(A) ā 0 (non-singular), the inverse exists: Aā»Ā¹ = adj(A)/det(A).
- |adj A| = |A|āæā»Ā¹ and adj(adj A) = |A|āæā»Ā² A for an nĆn matrix.
Solving Systems of Linear Equations and Consistency
Write a linear system as AX = B, where A is the coefficient matrix, X the variable column, and B the constant column.
- Matrix method: if det(A) ā 0, the unique solution is X = Aā»Ā¹B.
- Cramer's rule: x = Īā/Ī, y = Īā/Ī, z = Īā/Ī, where Ī = det(A) and Īįµ¢ replaces the i-th column of A with B.
- Consistency: Ī ā 0 ā unique solution (consistent). Ī = 0 with every Īįµ¢ = 0 ā infinitely many solutions (consistent, dependent). Ī = 0 with some Īįµ¢ ā 0 ā no solution (inconsistent).
- Homogeneous system AX = 0: Ī ā 0 gives only the trivial solution X = 0; Ī = 0 gives non-trivial (infinitely many) solutions.
Expansion of a Determinant (2Ć2 and 3Ć3)
- 2Ć2: |a b; c d| = ad ā bc (product of the main diagonal minus product of the off-diagonal).
- 3Ć3 by cofactors: expand along any row or column, e.g. along R1: aāāCāā + aāāCāā + aāāCāā - choose the row/column with the most zeros to minimise work.
- Sarrus (diagonal) rule for 3Ć3 only: add the three products going down-right and subtract the three going down-left: (aāāaāāaāā + aāāaāāaāā + aāāaāāaāā) ā (aāāaāāaāā + aāāaāāaāā + aāāaāāaāā).
- The sign pattern for cofactors is the checkerboard + ā + / ā + ā / + ā +.
Evaluating Determinants Using Row and Column Operations
Instead of a full expansion, use elementary operations to create zeros, then expand along that row/column.
- Allowed without changing the value: adding a scalar multiple of one row (or column) to another, e.g. Rā ā Rā ā 2Rā.
- Interchanging two rows/columns multiplies the value by ā1; taking a common factor k out of a row/column multiplies the value by k.
- Aim to make a row or column have two zeros so a single cofactor remains.
- Example: applying Cā ā Cā + Cā + Cā often produces a common factor (like a+b+c) that can be pulled outside.
Equation of a Line Through Two Points
The line through A(xā, yā) and B(xā, yā) is the set of points P(x, y) collinear with A and B, so the area determinant vanishes:
|x y 1; xā yā 1; xā yā 1| = 0
Expanding this gives the standard equation of the line. The same vanishing determinant is the condition for three given points to be collinear.
Singular and Non-Singular Matrices
- Singular: det(A) = 0 - the inverse does NOT exist; rows/columns are linearly dependent.
- Non-singular: det(A) ā 0 - the inverse A-1 = adj(A)/det(A) exists and is unique.
- Product rule: if either A or B is singular then AB is singular, since det(AB) = det(A)Ā·det(B).
- A system AX = B has a unique solution exactly when the coefficient matrix is non-singular.
Determinant of a Square Matrix: Definition
- A determinant is a number associated with every square matrix; det(A) is written as |A| or by placing the entries between vertical bars.
- Order 1: for A = [a], det(A) = a.
- Order 2: for A = |a b; c d|, det(A) = ad ā bc.
- Order 3: expand along any row or column using cofactors, e.g. along row 1: det(A) = aāāCāā + aāāCāā + aāāCāā.
- Only square matrices have a determinant; a rectangular matrix does not.
Multiplicative and Scalar Properties of Determinants
- Product rule: det(AB) = det(A)Ā·det(B) for square matrices A and B of the same order.
- Scalar rule: if every entry of an n Ć n matrix is multiplied by k, the determinant is multiplied by kāæ, i.e. det(kA) = kāæ det(A).
- If a single row (or column) is multiplied by k, only that operation multiplies the determinant by k.
- Transpose: det(Aįµ) = det(A), so any row property has a matching column property.
- For an invertible matrix, det(Aā»Ā¹) = 1 / det(A).
Determinant of Triangular and Diagonal Matrices
- In an upper triangular matrix all entries below the main diagonal are 0; in a lower triangular matrix all entries above it are 0.
- The determinant of any triangular matrix equals the product of its diagonal entries: det = aāā Ā· aāā Ā· ... Ā· aāā.
- The same rule holds for a diagonal matrix and for a scalar matrix.
- Hence det(I) = 1 for the identity matrix of any order.
- Row and column operations are often used to reduce a determinant to triangular form for quick evaluation.
Cramer's Rule for Linear Systems
- For a system in matrix form AX = B, let D = det(A) and let Dā, Dįµ§, Dz be the determinants formed by replacing the corresponding column of A with the constants B.
- If D is not equal to 0, the unique solution is x = Dā/D, y = Dįµ§/D, z = Dz/D.
- If D = 0 and every one of Dā, Dįµ§, Dz is 0, the system may have infinitely many solutions (further checking needed).
- If D = 0 but at least one of Dā, Dįµ§, Dz is not 0, the system is inconsistent (no solution).
- Cramer's rule works only for a square system with as many equations as unknowns.