Linear Algebra Determinants: Basic Techniques and Properties Part 1
Introduction to Determinants: Basic Techniques and Properties
These lecture notes, authored by Mayada Shahada for MATH 211 (Linear Algebra with Applications), cover the definition, calculation, and properties of determinants for square matrices of size n×n.
Determinant of a 2×2 Matrix
For a 2×2 matrix A=(acbd), the determinant is defined as:
det(A)=ad−bc
Notation
To denote the determinant, vertical bars are often used instead of square brackets:
acbd
Numerical Example
Given matrix A=(1324), find det(A).
det(A)=1324=(1)(4)−(2)(3)=4−6=−2
Determinant of an n×n Matrix: Preliminary Definitions
The determinant of an n×n matrix is a single real number related to geometric properties such as area or volume. It is defined recursively using determinants of smaller (n−1)×(n−1) submatrices.
1. Sign of a Position
Let A=[aij] be an n×n matrix. The sign assigned to the (i,j) position is determined by the formula:
Sign=(−1)i+j
If (i+j) is even, the sign is +1 (or simply +).
If (i+j) is odd, the sign is −1 (or simply −).
For a 4×4 matrix, the signs follow a checkerboard pattern:
+−+−−+−++−+−−+−+
2. The Minor of a Matrix
Let A=[aij] be an n×n matrix. The ijthminor of A, denoted as minor(A)ij, is the determinant of the (n−1)×(n−1) matrix resulting from deleting the ith row and the jth column of A.
Example calculation of a minor:
Let A=125142316
To find minor(A)12, remove Row 1 and Column 2:
2516=(2)(6)−(1)(5)=12−5=7
To find minor(A)23, remove Row 2 and Column 3:
1512=(1)(2)−(1)(5)=2−5=−3
3. The Cofactor of a Matrix
The ijthcofactor of A, denoted cof(A)ij, incorporates the positional sign with the minor:
cof(A)ij=(−1)i+j×minor(A)ij
Example calculation of a cofactor:
Using the previous matrix A, find cof(A)12.
i+j=1+2=3 (odd, so sign is negative).
minor(A)12=7.
cof(A)12=(−1)1+2×7=−1×7=−7
Cofactor Expansion (Laplace Expansion)
The determinant of an n×n matrix can be computed by summing the products of the elements of any single row or column by their corresponding cofactors.
Formulas
Expanding along the ith row:
det(A)=ai1cof(A)i1+ai2cof(A)i2+⋯+aincof(A)in=∑j=1naijcof(A)ij
Expanding along the jth column:
det(A)=a1jcof(A)1j+a2jcof(A)2j+⋯+anjcof(A)nj=∑i=1naijcof(A)ij
Comprehensive Example
Let A=125142316. Find det(A).
Option 1: Expansion along Row 1det(A)=+(1)4216−(1)2516+(3)2542det(A)=1(24−2)−1(12−5)+3(4−20)det(A)=22−7+3(−16)=22−7−48=−33
Option 2: Expansion along Column 2det(A)=−(1)2516+(4)1536−(2)1231det(A)=−1(12−5)+4(6−15)−2(1−6)det(A)=−7+4(−9)−2(−5)=−7−36+10=−33
Theorems and Efficiency Shortcuts
Theorem: Determinant is Well Defined
The determinant of an n×n matrix can be computed using cofactor expansion along any row or column. Choosing lines with many zeros drastically simplifies the arithmetic.
Determinants of Special Matrices
Zero Row/Column: If A contains a row or column of zeros, then det(A)=0.
Triangular Matrices:
Upper Triangular: All entries below the main diagonal are zero.
Lower Triangular: All entries above the main diagonal are zero.
Diagonal: Both upper and lower triangular.
The Product Rule: If A is triangular or diagonal, det(A) is the product of the diagonal entries:
det(A)=a11×a22×⋯×ann
Numerical Example (Triangular):det100250369=(1)(5)(9)=45
Elementary Row Operations and Determinants
Standard matrix operations affect the determinant value in specific ways. Let A be an n×n matrix.
Type I: Row Interchanges
If matrix B is obtained by switching two rows of A, then:
det(B)=−det(A)
Type II: Scalar Multiplication
If matrix B is obtained by multiplying one row of A by a scalar k, then:
det(B)=k×det(A)
Type III: Row Addition
If matrix B is obtained by adding a multiple of one row to another row, then:
det(B)=det(A)(The determinant remains unchanged.)
Proportional Rows
If A contains a row that is a multiple of another row, then det(A)=0.
Complex Examples and Problems
Problem 1: 4×4 Determinant using Column Expansion
Find det(A) for A=05031010−20−101702.
Choosing Column 2 (since it contains two zeros):
det(A)=−(1)5030−10702−(1)053−200172
Expansion of the first sub-matrix along its second row:
(−1)5372=(−1)(10−21)=11
Expansion of the second sub-matrix along its second column:
−(−2)5372=2(10−21)=−22
Final Calculation:
det(A)=−1(11)−1(−22)=−11+22=11
Practice Problem 2: Row Equality
Let A=231352594.
Applying −1×R3+R1→R1 and −1×R3+R2→R2 results in:
A′=111112114
Since Row 1 equals Row 2, det(A)=0.