9.2 Determinants, Matrix Inverses, and Cramer's Rule
Key Takeaways
- The determinant is the unique alternating, multilinear n-form D: (R^n)^n -> R normalized by det(I) = 1, governing algebraic invertibility and orientable volume scaling.
- Key algebraic multiplicative identities include det(AB) = det(A)det(B), det(A^T) = det(A), det(A^{-1}) = 1/det(A), and det(cA) = c^n det(A) for an n x n matrix.
- The adjugate matrix satisfies A adj(A) = adj(A) A = (det A) I_n, providing the closed-form inverse A^{-1} = (1/det A) adj(A).
- Cramer's Rule resolves regular linear systems Ax = b component-wise via x_i = det(A_i)/det(A), where A_i replaces the i-th column of A with b.
9.2 Determinants, Matrix Inverses, and Cramer's Rule
The determinant is an indispensable scalar invariant associated with square matrices. On the GRE Mathematics Subject Test, questions frequently test axiomatic determinant properties, efficient computation via row operations or block decompositions, the classical adjugate inverse formula, and Cramer's Rule for isolated variables.
Axiomatic Characterization and the Leibniz Formula
For a matrix $A \in M_{n \times n}(\mathbb{R})$, the determinant is the unique function $\det: M_{n \times n}(\mathbb{R}) \to \mathbb{R}$ satisfying three foundational axioms on its rows $\mathbf{r}_1, \dots, \mathbf{r}_n$:
- Multilinearity: $\det$ is linear in each row vector when all other rows remain fixed:
- Alternating Property: If two rows of $A$ are interchanged, the determinant reverses sign. Consequently, if $A$ contains two identical rows, $\det(A) = 0$.
- Normalization: $\det(I_n) = 1$.
These axioms uniquely imply the Leibniz expansion formula over the symmetric group $S_n$: where $\operatorname{sgn}(\sigma) \in {+1, -1}$ denotes the parity (signature) of the permutation $\sigma$.
Essential Operational and Multiplicative Properties
Rigorous application of the following multiplicative identities resolves many theoretical GRE problems instantaneously:
- Multiplicativity: $\det(AB) = \det(A)\det(B)$. By induction, $\det(A^k) = (\det A)^k$.
- Transpose Invariance: $\det(A^T) = \det(A)$. All properties holding for rows apply identically to columns.
- Homogeneity of Degree $n$: For any scalar $c \in \mathbb{R}$ and $n \times n$ matrix $A$:
- Invertibility Criterion: A matrix $A$ is invertible if and only if $\det(A) \neq 0$. When invertible:
- Block Triangular Matrices: If $A$ is $k \times k$ and $C$ is $(n-k) \times (n-k)$:
- Schur Complement: If $A$ is invertible, the block matrix determinant expands as:
Determinants via Elementary Row Operations
Computing determinants by definition is computationally prohibitive for $n \ge 4$. Gaussian row reduction simplifies $A$ to an upper triangular matrix $U$:
- Row Swap ($R_i \leftrightarrow R_j$): Multiplies the determinant by $-1$.
- Row Scaling ($c R_i \to R_i$): Multiplies the determinant by $c$.
- Row Addition ($R_i + c R_j \to R_i$): Leaves the determinant invariant.
Once in triangular form, the determinant is the product of diagonal entries: $\det(U) = \prod_{i=1}^n u_{ii}$.
| Row Operation | Algebraic Multiplier on $\det$ | Geometric Impact |
|---|---|---|
| $R_i \leftrightarrow R_j$ | $-1$ | Reverses hyper-volume orientation |
| $c R_i \to R_i$ | $c$ | Scales dimension $i$ by factor $c$ |
| $R_i + k R_j \to R_i$ | $1$ (Invariant) | Shearing deformation preserving volume |
Cofactor Expansion and the Classical Adjugate
Let $M_{ij}$ denote the $(n-1) \times (n-1)$ submatrix obtained by deleting row $i$ and column $j$ of $A$. The $(i, j)$-cofactor is: Laplace expansion evaluates $\det(A)$ along any arbitrary row $i$ or column $j$:
The Adjugate Matrix Formula
The adjugate (or classical adjoint), denoted $\operatorname{adj}(A)$, is the transpose of the cofactor matrix: The fundamental adjugate identity states: When $\det(A) \neq 0$, this yields the explicit matrix inverse formula:
Properties of the Adjugate
- $\det(\operatorname{adj}(A)) = (\det A)^{n-1}$.
- For $n \ge 3$, $\operatorname{adj}(\operatorname{adj}(A)) = (\det A)^{n-2} A$.
Cramer's Rule and Geometric Interpretation
Cramer's Rule
For a system $A\mathbf{x} = \mathbf{b}$ with $A \in M_{n \times n}(\mathbb{R})$ and $\det(A) \neq 0$, the unique solution components are: where $A_i$ is the matrix formed by replacing the $i$-th column of $A$ with $\mathbf{b}$. Cramer's Rule is especially powerful on the GRE when asked for only a single unknown, avoiding a full matrix inversion.
Geometric Interpretation: Hyper-Volume Scaling
The absolute value $|\det(A)|$ represents the $n$-dimensional volume of the parallelotope formed by the columns of $A$. Under the linear transformation $T(\mathbf{x}) = A\mathbf{x}$, the volume of any measurable set $S \subset \mathbb{R}^n$ scales as $\operatorname{Vol}(T(S)) = |\det(A)| \operatorname{Vol}(S)$. The sign of $\det(A)$ specifies whether the transformation preserves ($+1$) or reverses ($-1$) spatial orientation.
Step-by-Step Worked Problems
Problem 1: Determinant with Adjugate and Scaled Inverses
Let $A$ be a $3 \times 3$ real matrix with $\det(A) = 4$. Compute $\det(2 A^{-1} \operatorname{adj}(A^T))$.
Solution:
- Apply homogeneity of degree $n = 3$ to pull the scalar $2$ outside:
- Use the multiplicative property of the determinant:
- Evaluate individual factors:
- Combine all factors:
Problem 2: Cramer's Rule for a Single Variable
Solve for $y$ in the system:
Solution:
- Compute $\det(A)$:
- Form $A_2$ by replacing the second column with $\mathbf{b} = (4, 1, 7)^T$:
- Expand $\det(A_2)$ along the first row:
- Apply Cramer's Rule:
GRE Exam Traps & Pitfalls
Trap 1: Dropping the Exponent on Scalar Scaling Writing $\det(cA) = c \det(A)$ is the single most common determinant blunder. For an $n \times n$ matrix, every row is multiplied by $c$, yielding $\det(cA) = c^n \det(A)$.
Trap 2: Assuming Linearity Across Addition In general, $\det(A + B) \neq \det(A) + \det(B)$. For instance, $\det(I_2 + (-I_2)) = \det(0) = 0$, but $\det(I_2) + \det(-I_2) = 1 + (-1)^2 = 2$.
Trap 3: Forgetting the Transpose in the Adjugate Definition The adjugate is the transpose of the cofactor matrix: $(\operatorname{adj}(A)){ij} = C{ji}$. If you calculate cofactors and fail to transpose before multiplying, the result will not equal $(\det A) I_n$ unless the matrix is symmetric.
Let A and B be 4 x 4 real matrices with det(A) = 3 and det(B) = -2. What is the value of det(2 A^T B^{-1} adj(A))?
Which of the following statements is true for all n x n matrices A and B?
Consider the 3 x 3 Vandermonde matrix V with rows [1, 2, 4], [1, 3, 9], and [1, 5, 25]. What is the determinant of V?