Multivariable-Calculus · Unit 3 · Video 5 · Interactive Practice

The Matrix That Undoes A: A Inverse, and Why It Multiplies on the Left

IKey Formulas

FormulaNameWhat you need
AA1=IA1A=IAA^{-1} = I \qquad A^{-1}A = IDefinition of the inverseA square matrix AA
AA of size n×nn \times nThe square requirementAs many rows as columns
AX=B    X=A1BAX = B \;\Longrightarrow\; X = A^{-1}BSolving a linear systemA1A^{-1} and the column BB
(n×n)(n×1)=(n×1)(n \times n)(n \times 1) = (n \times 1)The size ruleAXAX exists, XAXA does not

Key Insight: A1A^{-1} multiplies both sides on the left because that is where the AA it cancels sits: A1(AX)=(A1A)X=IX=XA^{-1}(AX) = (A^{-1}A)X = IX = X.

IIVisualization 1 — What It Means to Undo A

Applying AA and then A1A^{-1} returns every vector to exactly where it started.

💡 Challenge: find the XX that AA sends to 5,3\langle 5, 3 \rangle — that single question is the system AX=5,3AX = \langle 5, 3 \rangle, solved below.

IIIVisualization 2 — Why the Inverse Goes on the Left

One factor, applied to the left of both sides, turns AX=BAX = B into its own solution.

IVVisualization 3 — Which Products Even Exist

A square matrix and a column multiply in one order only — the other has no size.

VQuiz Questions

Problem 1 · Which Matrix Is the Inverse

Given: A=(2111)A = \begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix}find the matrix MM with AM=MA=IAM = MA = I.

✅ Correct! On the diagonal 21+1(1)=12 \cdot 1 + 1 \cdot (-1) = 1, off it 2(1)+12=02 \cdot (-1) + 1 \cdot 2 = 0, so AM=MA=IAM = MA = I.
❌ Those are the reciprocals of the entries. Inverting a matrix is not inverting its entries: this MM gives AM=(23322)AM = \begin{pmatrix} 2 & 3 \\ \tfrac{3}{2} & 2 \end{pmatrix}.
❌ Every sign is flipped. This matrix gives AM=IAM = -I, and I-I is not the identity.
❌ The diagonal entries have to trade places too. As written, AM=(3110)AM = \begin{pmatrix} 3 & -1 \\ 1 & 0 \end{pmatrix}.
❌ Not quite. Test your candidate: multiply it by AA and see whether every diagonal entry is 11 and every other entry 00.
Show solution

For a 2×22 \times 2 matrix, swap the diagonal entries, negate the off-diagonal ones, and divide by the determinant:

detA=2111=1,A1=11(1112)\det A = 2 \cdot 1 - 1 \cdot 1 = 1, \qquad A^{-1} = \frac{1}{1}\begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix}

Check both products, since either one is enough for a square matrix:

AA1=(2111)(1112)=(212+2111+2)=(1001)AA^{-1} = \begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix}\begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix} = \begin{pmatrix} 2 - 1 & -2 + 2 \\ 1 - 1 & -1 + 2 \end{pmatrix} = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix} A1A=(1112)(2111)=(21112+21+2)=(1001)A^{-1}A = \begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix}\begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix} = \begin{pmatrix} 2 - 1 & 1 - 1 \\ -2 + 2 & -1 + 2 \end{pmatrix} = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}

The exponent 1-1 is a name for the undoing matrix, not an instruction to take reciprocals.

Problem 2 · Solve the System

Given: A=(3152)A = \begin{pmatrix} 3 & 1 \\ 5 & 2 \end{pmatrix},   A1=(2153)\;A^{-1} = \begin{pmatrix} 2 & -1 \\ -5 & 3 \end{pmatrix},   B=5,9\;B = \langle 5, 9 \ranglefind the column XX with AX=BAX = B.

✅ Correct! X=A1B=25+(1)9,  (5)5+39=1,2X = A^{-1}B = \langle 2 \cdot 5 + (-1) \cdot 9,\; (-5) \cdot 5 + 3 \cdot 9 \rangle = \langle 1, 2 \rangle, and A1,2=5,9A\langle 1, 2 \rangle = \langle 5, 9 \rangle.
❌ That is ABAB, not A1BA^{-1}B. Multiplying by AA applies the transformation again instead of undoing it.
❌ Right numbers, wrong order. The first row of A1A^{-1} produces x1x_1: 25+(1)9=12 \cdot 5 + (-1) \cdot 9 = 1.
❌ That is BB treated as a row and multiplied from the left. With BB a column, BA1BA^{-1} is (2×1)(2×2)(2 \times 1)(2 \times 2) and does not exist.
❌ Not quite. Multiply A1A^{-1} into BB row by row: each row of A1A^{-1} dotted with BB gives one entry of XX.
Show solution

Left-multiply AX=BAX = B by A1A^{-1}; the left side collapses to XX, so

X=A1B=(2153)(59)=(10925+27)=(12)X = A^{-1}B = \begin{pmatrix} 2 & -1 \\ -5 & 3 \end{pmatrix}\begin{pmatrix} 5 \\ 9 \end{pmatrix} = \begin{pmatrix} 10 - 9 \\ -25 + 27 \end{pmatrix} = \begin{pmatrix} 1 \\ 2 \end{pmatrix}

Verify in the original system:

31+12=551+22=93 \cdot 1 + 1 \cdot 2 = 5 \qquad 5 \cdot 1 + 2 \cdot 2 = 9

Both rows check, so X=1,2X = \langle 1, 2 \rangle.

Problem 3 · From System to Solution

Given: the system 2x1+x2=72x_1 + x_2 = 7 and x1+x2=4x_1 + x_2 = 4, written as AX=BAX = B with A=(2111)A = \begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix} and B=7,4B = \langle 7, 4 \rangle.

What is A1A^{-1}?

What is XX?

✅ Correct! X=A1B=74,  7+8=3,1X = A^{-1}B = \langle 7 - 4,\; -7 + 8 \rangle = \langle 3, 1 \rangle, and indeed 23+1=72 \cdot 3 + 1 = 7 and 3+1=43 + 1 = 4.
❌ Check the inverse. Swap the two diagonal entries, negate the two off-diagonal ones, then divide by detA=2111=1\det A = 2 \cdot 1 - 1 \cdot 1 = 1.
❌ Check the multiplication. x1x_1 is the first row of A1A^{-1} dotted with BB: 17+(1)41 \cdot 7 + (-1) \cdot 4.
❌ The off-diagonal entries have to be negated. Swapping alone gives a matrix MM with AM=(3423)AM = \begin{pmatrix} 3 & 4 \\ 2 & 3 \end{pmatrix}.
❌ That is AA itself. A2=(5332)A^2 = \begin{pmatrix} 5 & 3 \\ 3 & 2 \end{pmatrix}, which is not the identity.
❌ The diagonal entries must trade places too. The 22 belongs in the lower-right corner of A1A^{-1}.
❌ Right numbers, wrong order. The first row of A1A^{-1} builds x1x_1: 17+(1)4=31 \cdot 7 + (-1) \cdot 4 = 3.
❌ That is ABAB, not A1BA^{-1}B. Multiplying by AA applies the change of variables again instead of reversing it.
❌ That is what a sign-less inverse gives. With the true first row (1,1)(1, -1), x1=74=3x_1 = 7 - 4 = 3, not 7+47 + 4.
Show solution

Step 1 — invert AA. detA=2111=1\det A = 2 \cdot 1 - 1 \cdot 1 = 1, so

A1=(1112),A1A=(21112+21+2)=IA^{-1} = \begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix}, \qquad A^{-1}A = \begin{pmatrix} 2 - 1 & 1 - 1 \\ -2 + 2 & -1 + 2 \end{pmatrix} = I

Step 2 — left-multiply the system.

X=A1B=(1112)(74)=(747+8)=(31)X = A^{-1}B = \begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix}\begin{pmatrix} 7 \\ 4 \end{pmatrix} = \begin{pmatrix} 7 - 4 \\ -7 + 8 \end{pmatrix} = \begin{pmatrix} 3 \\ 1 \end{pmatrix}

Step 3 — verify both equations.

23+1=73+1=42 \cdot 3 + 1 = 7 \qquad 3 + 1 = 4

So x1=3x_1 = 3 and x2=1x_2 = 1. Dropping the minus signs in A1A^{-1} would have given 11,1\langle 11, 1 \rangle, and multiplying by AA instead of A1A^{-1} would have given 18,11\langle 18, 11 \rangle — neither satisfies the system.

Problem 4 · Multiplying on the Wrong Side

Given: AA is an invertible 3×33 \times 3 matrix and XX, BB are 3×13 \times 1 columns. Starting from AX=BAX = B, a student multiplies both sides on the right by A1A^{-1} and writes AXA1=BA1AXA^{-1} = BA^{-1}what goes wrong first?

✅ Correct! BA1BA^{-1} is (3×1)(3×3)(3 \times 1)(3 \times 3) and fails the same way. The only legal move is A1A^{-1} on the left of both sides.
❌ There is nothing to collapse. BA1BA^{-1} puts a 3×13 \times 1 column in front of a 3×33 \times 3 matrix, and that product does not exist.
❌ Close — that is the objection when XX is square. Then AXA1AXA^{-1} exists but does not simplify. Here XX is a column, so the product never gets that far.
❌ For a square matrix both products are the identity. AA1=A1A=IAA^{-1} = A^{-1}A = I; the trouble here is the sizes.
❌ Not quite. Write the sizes under each factor before anything else: (3×3)(3×1)(3 \times 3)(3 \times 1) works, (3×1)(3×3)(3 \times 1)(3 \times 3) does not.
Show solution

Check the sizes on the left. AXAX is (3×3)(3×1)=3×1(3 \times 3)(3 \times 1) = 3 \times 1, a column. Multiplying it by A1A^{-1} on the right gives

(3×1)(3×3):13(3 \times 1)(3 \times 3): \qquad 1 \neq 3

so (AX)A1(AX)A^{-1} is undefined. The right side fails identically: BA1BA^{-1} is also (3×1)(3×3)(3 \times 1)(3 \times 3).

Left-multiplication works because the A1A^{-1} lands immediately beside the AA it cancels:

A1(AX)=(A1A)X=IX=X,X=A1BA^{-1}(AX) = (A^{-1}A)X = IX = X, \qquad X = A^{-1}B

Even if XX were square, so that AXA1AXA^{-1} existed, the XX sitting between AA and A1A^{-1} would keep them apart and nothing would cancel. The rule: multiply by A1A^{-1} on the left, and on the left of both sides.

Solved: 0 / 4