Multivariable-Calculus Β· Unit 3 Β· Video 6 Β· Interactive Practice

Minors, Signs, Transpose, Divide: A Three-by-Three Inverse by Hand

IKey Formulas

FormulaNameWhat you need
Aβˆ’1=1det⁑(A)adj⁑(A)A^{-1} = \dfrac{1}{\det(A)}\operatorname{adj}(A)Inverse by cofactorsdet⁑(A)β‰ 0\det(A) \neq 0
Mij=det⁑(A with row i and column j deleted)M_{ij} = \det\big(A \text{ with row } i \text{ and column } j \text{ deleted}\big)MinorA position (i,j)(i,j) in AA
Cij=(βˆ’1)i+jMij,adj⁑(A)=CTC_{ij} = (-1)^{i+j} M_{ij}, \qquad \operatorname{adj}(A) = C^{\mathsf{T}}Cofactor, then adjointAll nine minors
Aadj⁑(A)=det⁑(A) IA \operatorname{adj}(A) = \det(A)\, IWhy the divisor is det⁑(A)\det(A)Holds for every square AA

Key Insight: (βˆ’1)i+j(-1)^{i+j} is an instruction, not an answer. At a minus it flips whatever sign the minor already had: M12=βˆ’1M_{12} = -1 sits under a minus, so C12=+1C_{12} = +1 β€” while M13=βˆ’2M_{13} = -2 sits under a plus and stays βˆ’2-2.

IIVisualization 1 β€” Where Each Minor Comes From

Every entry of AA hides a 2Γ—22 \times 2 determinant: delete its row, delete its column.

IIIVisualization 2 β€” Reading the Checkerboard

Does the checkerboard give a cofactor's sign, or tell you what to do to the minor?

IVVisualization 3 β€” Transpose, Then Divide

Three more steps turn the nine minors into Aβˆ’1A^{-1}.

πŸ’‘ Those nine numbers solve every system at once: if AX=BAX = B, then X=Aβˆ’1BX = A^{-1}B, whatever the right-hand side BB happens to be.

VQuiz Questions

Problem 1 Β· One Minor of the Video's Matrix

Given: A=[233245112]A = \begin{bmatrix} 2 & 3 & 3 \\ 2 & 4 & 5 \\ 1 & 1 & 2 \end{bmatrix} β€” find the minor M32M_{32}.

βœ… Correct! Deleting row 3 and column 2 leaves ∣2325∣=10βˆ’6=4\begin{vmatrix} 2 & 3 \\ 2 & 5 \end{vmatrix} = 10 - 6 = 4.
❌ Not quite. 22 is M33M_{33} β€” you deleted column 3. Column 2 is the one that goes.
❌ Close, but that is the cofactor. (βˆ’1)3+2=βˆ’1(-1)^{3+2} = -1 turns 44 into C32=βˆ’4C_{32} = -4; the minor itself carries no checkerboard sign.
❌ Not quite. βˆ’1-1 is M23M_{23}. In MijM_{ij} the first index is the row you delete, the second the column.
Show solution

Delete row 3 and column 2 of AA. The surviving entries are the ones in rows 1 and 2, columns 1 and 3:

M32=∣2325∣=2β‹…5βˆ’3β‹…2=10βˆ’6=4M_{32} = \begin{vmatrix} 2 & 3 \\ 2 & 5 \end{vmatrix} = 2 \cdot 5 - 3 \cdot 2 = 10 - 6 = 4

The minor is 44. Only in step 2 does the checkerboard sign (βˆ’1)3+2=βˆ’1(-1)^{3+2} = -1 arrive and turn it into the cofactor C32=βˆ’4C_{32} = -4.

Problem 2 Β· Instruction or Final Sign?

Given: the top row of the matrix of minors is 3,β€…β€Šβˆ’1,β€…β€Šβˆ’23,\; -1,\; -2, and the top row of the checkerboard is +,β€…β€Šβˆ’,β€…β€Š++,\; -,\; + β€” find the top row of the cofactor matrix.

βœ… Correct! The middle entry flips (βˆ’1β†’+1-1 \to +1) and the two under a plus keep the signs they already had.
❌ That reads the diagram as the final signs. A minus means flip, so βˆ’1-1 becomes +1+1; a plus means leave it, so βˆ’2-2 stays βˆ’2-2.
❌ Those are still the minors. Position (1,2)(1,2) sits under a minus, so its sign must flip.
❌ Check where the checkerboard starts. The top-left corner is a plus, so the first row reads +,β€…β€Šβˆ’,β€…β€Š++,\; -,\; +, not βˆ’,β€…β€Š+,β€…β€Šβˆ’-,\; +,\; -.
Show solution

Apply each board entry as an instruction to the minor below it:

  • (1,1)(1,1): sign ++, so leave 33 alone β‡’C11=3\Rightarrow C_{11} = 3
  • (1,2)(1,2): sign βˆ’-, so flip βˆ’1β‡’C12=+1-1 \Rightarrow C_{12} = +1
  • (1,3)(1,3): sign ++, so leave βˆ’2-2 alone β‡’C13=βˆ’2\Rightarrow C_{13} = -2

The top row of cofactors is 3,β€…β€Š1,β€…β€Šβˆ’23,\; 1,\; -2. Equivalently Cij=(βˆ’1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}: the sign of a cofactor depends on two things β€” the instruction in the diagram and the sign the minor already had.

Problem 3 Β· One Entry of an Inverse

Given: B=[123014560]B = \begin{bmatrix} 1 & 2 & 3 \\ 0 & 1 & 4 \\ 5 & 6 & 0 \end{bmatrix} with det⁑(B)=1\det(B) = 1 β€” find the entry in row 2, column 1 of Bβˆ’1B^{-1}.

βœ… Correct! The transpose sends C12=20C_{12} = 20 to position (2,1)(2,1) of the adjoint, and det⁑(B)=1\det(B) = 1 leaves it there.
❌ That is C21C_{21}. You skipped the transpose: the (2,1)(2,1) entry of adj⁑(B)\operatorname{adj}(B) is C12C_{12}, not C21C_{21}.
❌ That is the minor M12M_{12}. Position (1,2)(1,2) sits under a minus, so C12=βˆ’(βˆ’20)=+20C_{12} = -(-20) = +20.
❌ That is the minor M21M_{21}. Two steps are missing: the checkerboard flip, and the transpose that moves C12C_{12} into position (2,1)(2,1).
Show solution

Step 1 β€” which cofactor lands in position (2,1)(2,1)? Since adj⁑(B)=CT\operatorname{adj}(B) = C^{\mathsf{T}}, the (2,1)(2,1) entry of the adjoint is C12C_{12}.

Step 2 β€” the minor M12M_{12} (delete row 1 and column 2):

M12=∣0450∣=0β‹…0βˆ’4β‹…5=βˆ’20M_{12} = \begin{vmatrix} 0 & 4 \\ 5 & 0 \end{vmatrix} = 0 \cdot 0 - 4 \cdot 5 = -20

Step 3 β€” the checkerboard. (βˆ’1)1+2=βˆ’1(-1)^{1+2} = -1 flips it: C12=+20C_{12} = +20.

Step 4 β€” divide by det⁑(B)=1\det(B) = 1:

(Bβˆ’1)21=C12det⁑(B)=201=20\big(B^{-1}\big)_{21} = \frac{C_{12}}{\det(B)} = \frac{20}{1} = 20

The whole inverse is Bβˆ’1=[βˆ’2418520βˆ’15βˆ’4βˆ’541]B^{-1} = \begin{bmatrix} -24 & 18 & 5 \\ 20 & -15 & -4 \\ -5 & 4 & 1 \end{bmatrix} β€” and 1818, the answer you get without the transpose, is sitting one flip away at position (1,2)(1,2).

Problem 4 Β· The Same Four Steps on a 2Γ—22 \times 2

Given: D=[4726]D = \begin{bmatrix} 4 & 7 \\ 2 & 6 \end{bmatrix}, whose minors are the single surviving entries β€” find Dβˆ’1D^{-1} by minors, checkerboard, transpose, divide.

βœ… Correct! This is the familiar 2Γ—22 \times 2 rule β€” swap the diagonal, negate the off-diagonal, divide by det⁑\det β€” and it is just the four steps at size two.
❌ That is the cofactor matrix. One step left: transpose it, which swaps βˆ’2-2 and βˆ’7-7.
❌ The diagonal did not move. M11=6M_{11} = 6 and M22=4M_{22} = 4: deleting row 1 and column 1 leaves the other diagonal entry.
❌ The checkerboard was never applied. Positions (1,2)(1,2) and (2,1)(2,1) sit under a minus, so both off-diagonal entries flip sign.
Show solution

Step 1 β€” minors. Deleting a row and a column of a 2Γ—22 \times 2 leaves one entry, and that entry is the minor:

M=[6274]M = \begin{bmatrix} 6 & 2 \\ 7 & 4 \end{bmatrix}

Step 2 β€” checkerboard [+βˆ’βˆ’+]\begin{bmatrix} + & - \\ - & + \end{bmatrix}, so the two off-diagonal entries flip:

C=[6βˆ’2βˆ’74]C = \begin{bmatrix} 6 & -2 \\ -7 & 4 \end{bmatrix}

Step 3 β€” transpose:

adj⁑(D)=CT=[6βˆ’7βˆ’24]\operatorname{adj}(D) = C^{\mathsf{T}} = \begin{bmatrix} 6 & -7 \\ -2 & 4 \end{bmatrix}

Step 4 β€” divide by det⁑(D)=4β‹…6βˆ’7β‹…2=10\det(D) = 4 \cdot 6 - 7 \cdot 2 = 10:

Dβˆ’1=110[6βˆ’7βˆ’24]D^{-1} = \frac{1}{10}\begin{bmatrix} 6 & -7 \\ -2 & 4 \end{bmatrix}

Verify: [4726][6βˆ’7βˆ’24]=[100010]=10 I\begin{bmatrix} 4 & 7 \\ 2 & 6 \end{bmatrix}\begin{bmatrix} 6 & -7 \\ -2 & 4 \end{bmatrix} = \begin{bmatrix} 10 & 0 \\ 0 & 10 \end{bmatrix} = 10\,I, which is det⁑(D) I\det(D)\, I exactly as in the 3Γ—33 \times 3 case.

Solved: 0 / 4