Notes βΊ MATH 2160: Linear Algebra Guide
Chapter 3 Study Guide
689 words 5 min Modified
Table of Contents
Chapter 3 β Determinants
Covers Β§3.1β3.3. Full problems and recorded answers in 2160 Compendium.
41 questions, only 3 true/false (7%) β the most computational chapter in the course. Points here come from executing cofactor expansion and row reduction cleanly, not from conceptual argument.
Β§3.1 Introduction to Determinants
The $(i,j)$ minor $M_{ij}$ is the determinant of the matrix with row $i$ and column $j$ deleted. The cofactor is
$$C_{ij}=(-1)^{i+j}M_{ij}$$Expansion across row $i$: $\ \det A=a_{i1}C_{i1}+a_{i2}C_{i2}+\cdots+a_{in}C_{in}$ Expansion down column $j$: $\ \det A=a_{1j}C_{1j}+a_{2j}C_{2j}+\cdots+a_{nj}C_{nj}$
Any row or column gives the same answer. That freedom is the whole strategy.
Start with $+$ at the top-left and alternate. Forgetting a sign is the single most common arithmetic error in this chapter.
Six Β§3.1 problems say “at each step, choose a row or column that involves the least amount of computation.” A zero entry kills its entire cofactor term, so expanding along a row with two zeros in a $4\times4$ turns four $3\times3$ determinants into one.
If $A$ is triangular, $\det A$ is the product of the diagonal entries. This is why elementary matrices have such easy determinants.
Tested as
- Expansion across row 1 and down column 2 β 3.1.1, 3.1.3, 3.1.4, 3.1.5
- Strategic expansion for minimal work β 3.1.9 β 3.1.14
- Determinant of an elementary matrix β 3.1.25, 3.1.26, 3.1.29
- Effect of a row operation on $\det$ β 3.1.21
- Is $\det(3A)=3\det A$? β 3.1.37
Β§3.2 Properties of Determinants
| Operation | Effect on $\det$ |
|---|---|
| Replacement (add a multiple of one row to another) | unchanged |
| Interchange two rows | multiplied by $-1$ |
| Scale a row by $k$ | multiplied by $k$ |
Replacement being free is what makes row reduction the efficient way to compute a large determinant.
But $\det(A+B) \neq \det A + \det B$ β the determinant is not linear in the matrix.
For an $n\times n$ matrix and scalar $r$: $\ \det(rA)=r^{n}\det A$ β the scalar comes out once per row, hence the exponent $n$. This is exactly what 3.1.37 and 3.2.42 are testing.
$A$ is invertible $\iff \det A \neq 0$. This is statement 12 of the Invertible Matrix Theorem.
Tested as
- Name the property illustrated β 3.2.1, 3.2.2
- Determinant by row reduction to echelon form β 3.2.5, 3.2.6
- Row reduction combined with cofactor expansion β 3.2.12, 3.2.14
- Invertibility via determinant β 3.2.21 β 3.2.23
- Formula for $\det(rA)$ β 3.2.42
- Verify $\det AB=(\det A)(\det B)$ β 3.2.43
- Combine properties to evaluate β 3.2.45
Β§3.3 Cramer’s Rule, Volume, and the Adjugate
For an invertible $n\times n$ matrix $A$, the unique solution of $A\mathbf{x}=\mathbf{b}$ has
$$x_i=\frac{\det A_i(\mathbf{b})}{\det A}$$where $A_i(\mathbf{b})$ is $A$ with its $i$-th column replaced by $\mathbf{b}$.
Requires $\det A \neq 0$. Practical only for small systems, but it is the standard $2\times2$/$3\times3$ exam computation.
The adjugate is the transpose of the cofactor matrix:
$$\operatorname{adj}A=\begin{bmatrix} C_{11} & C_{21} & \cdots & C_{n1} \\ C_{12} & C_{22} & \cdots & C_{n2} \\ \vdots & & & \vdots \\ C_{1n} & C_{2n} & \cdots & C_{nn} \end{bmatrix}, \qquad A^{-1}=\frac{1}{\det A}\operatorname{adj}A$$Note the transpose β cofactor $C_{ij}$ lands in position $(j,i)$. Forgetting it is the classic error here.
- The area of the parallelogram determined by columns of a $2\times2$ matrix $A$ is $|\det A|$
- The volume of the parallelepiped determined by columns of a $3\times3$ matrix is $|\det A|$
For a parallelogram given by four vertices, first translate one vertex to the origin by subtracting it from the others, then take the two edge vectors as columns. Take the absolute value β area is never negative.
Tested as
- Cramer’s Rule β 3.3.1, 3.3.2, 3.3.3, 3.3.5, 3.3.6
- Adjugate and inverse formula β 3.3.12, 3.3.13, 3.3.15
- Area of a parallelogram from vertices β 3.3.19, 3.3.21
- Volume of a parallelepiped β 3.3.23
Related: Chapter 2 Study Guide Β· Chapter 4 Study Guide Β· 2160 Compendium