Goal: read a matrix and immediately answer "invertible or not?" and "what's the determinant?" without running the full recipe.
Recall Solution 1.1
What we do: apply detA=ad−bc with a=3,b=2,c=5,d=4.
Why: invertibility is decided entirely by the determinant — no need to build the inverse to answer the yes/no question.
detA=(3)(4)−(2)(5)=12−10=2.
Since detA=2=0, A is invertible (non-singular).
Recall Solution 1.2
What we do: compute each determinant; singular means it equals 0.
detP=(1)(4)−(2)(2)=4−4=0 → singular (row 2 is 2× row 1).
detQ=(6)(2)−(3)(4)=12−12=0 → singular (row 1 is 1.5× row 2).
detR=(0)(0)−(5)(5)=0−25=−25=0 → invertible (a negative determinant is fine — it just means the transform flips orientation, see Linear transformations and area).
Why R surprises people: two zeros on the diagonal feels degenerate, but degeneracy is about parallel columns, not about zeros sitting anywhere.
Goal: run the swap–negate–divide recipe start to finish, correctly.
Recall Solution 2.1
Step 1 — determinant (always first).detA=(4)(2)−(3)(3)=8−9=−1. Non-zero ⟹ proceed.
Why first? The whole recipe divides by detA; if it were 0 the inverse would not exist and every later step would be wasted (division by zero). Computing it first is the cheapest possible way to catch a dead end.
Step 2 — adjugate. Swap the corners 4↔2, flip the middle 3→−3 (this is the adjA defined above):
adjA=(2−3−34).Step 3 — divide by det.A−1=−11(2−3−34)=(−233−4).Step 4 — verify (cheap insurance): (4332)(−233−4)=(−8+9−6+612−129−8)=(1001)=I ✓.
Recall Solution 2.2
Step 1 — determinant first.detB=(1)(5)−(2)(3)=5−6=−1 (non-zero ⟹ inverse exists).
Step 2 — adjugate then divide.B−1=−11(5−3−21)=(−532−1).Step 3 — solve. Left-multiply Bx=b by B−1 to get x=B−1b (see Solving linear systems):
x=(−532−1)(74)=(3(4)+(−1)(7)(−5)(4)+2(7))=(12−7−20+14)=(5−6).Check:1(−6)+2(5)=−6+10=4 ✓, 3(−6)+5(5)=−18+25=7 ✓. So x=−6,y=5.
Goal: reason about the machinery — how det behaves, what happens at the edge.
Recall Solution 3.1
detA=(2)(3)−(0)(1)=6.
A−1=61(3−102)=(1/2−1/601/3).det(A−1)=(21)(31)−(0)(−61)=61.Relationship:det(A−1)=detA1.
Why this must be true (area picture):A scales every area by a factor detA=6. The undo-machine A−1 must scale area by the reciprocal 61 so that doing both returns the original area — see Linear transformations and area.
Recall Solution 3.2
Singular condition:detM=k⋅k−2⋅8=k2−16=0⇒k=±4.
So M has no inverse exactly when ==k=4== or ==k=−4== (the two rows become proportional).
Otherwise (k=±4):
M−1=k2−161(k−8−2k).Sanity check at k=6:det=36−16=20, M−1=201(6−8−26); multiply back to confirm I.
Goal: combine the inverse with multiplication, identities and systems.
Recall Solution 4.1
Proof. To show a matrix X is the inverse of AB, it is enough to show (AB)X=I (see Identity matrix). Take X=B−1A−1:
(AB)(B−1A−1)=A(BB−1)A−1=AIA−1=AA−1=I.
We used associativity to regroup, then BB−1=I and I vanishing under multiplication. So (AB)−1=B−1A−1.
Why the order flips (glove picture): to undo "put on socks, then shoes" you must "take off shoes, then socks" — reverse the last operation first.
Numeric check.AB=(1011)(2002)=(2022), det=4, so
(AB)−1=41(20−22)=(1/20−1/21/2).
Separately A−1=(10−11), B−1=(1/2001/2), and
B−1A−1=(1/2001/2)(10−11)=(1/20−1/21/2).
Match ✓.
Recall Solution 4.2
Key idea:(A−1)−1=A — undoing the undo returns the original. So just invert the given matrix.
Let C=A−1. detC=(2)(2)−(−1)(−3)=4−3=1.A=C−1=11(2312)=(2312).Check:AA−1=(2312)(2−3−12)=(4−36−6−2+2−3+4)=I ✓.
Goal: prove a general fact and handle a fully symbolic / limiting case.
Recall Solution 5.1
Step 1 — compute A2 for A=(acbd):
A2=(a2+bcca+dcab+bdcb+d2)=(a2+bcc(a+d)b(a+d)d2+bc).Step 2 — subtract (a+d)A:A2−(a+d)A=(a2+bc−a(a+d)00d2+bc−d(a+d))=(bc−ad00bc−ad)=−(detA)I.Step 3 — rearrange:A2−(a+d)A+(detA)I=O ✓ (the identity holds for every2×2 matrix).
Step 4 — extract the inverse. Assume detA=0. Factor an A out of the first two terms:
A(A−(a+d)I)=−(detA)I⇒A⋅detA(a+d)I−A=I.
Therefore
A−1=detA(a+d)I−A=detA1(d−c−ba),
which is exactly the adjugate formula — recovered by pure algebra, no swapping-by-hand.
Why this is beautiful: the same swap/negate pattern the parent note found by solving four equations falls out of one polynomial identity.
Recall Solution 5.2
Step 1 — determinant.detAε=(1)(1+ε)−(1)(1)=1+ε−1=ε.Step 2 — inverse (swap corners, flip middle, divide by ε):
Aε−1=ε1(1+ε−1−11)=(ε1+ε−ε1−ε1ε1).Step 3 — limiting behaviour. As ε→0+ the divisor ε shrinks toward zero, so each entry ε1,ε1+ε→+∞ (and −ε1→−∞): the inverse blows up without bound.
Step 4 — the singular limit. At exactly ε=0 we have A0=(1111) with detA0=0 and two identical (hence parallel) columns, so A0 is singular: no inverse exists at all. The blow-up in Step 3 is the algebra warning you, as you approach that wall, that the undo-machine is about to become impossible.
The story (edge picture): near-singular matrices have huge, unstable inverses — a small wobble in the input data gets amplified by the factor 1/ε. At the wall ε=0 the area collapses to a line and the inverse ceases to exist entirely. This is why dividing by a tiny determinant is numerically dangerous — see Singular vs non-singular matrices.