2.6.10 · D4Matrices & Determinants — Introduction

Exercises — Inverse of 2×2 matrix

2,594 words12 min readBack to topic
Figure — Inverse of 2×2 matrix

L1 — Recognition

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 with . Why: invertibility is decided entirely by the determinant — no need to build the inverse to answer the yes/no question. Since , is invertible (non-singular).

Recall Solution 1.2

What we do: compute each determinant; singular means it equals .

  • singular (row 2 is row 1).
  • singular (row 1 is row 2).
  • invertible (a negative determinant is fine — it just means the transform flips orientation, see Linear transformations and area). Why surprises people: two zeros on the diagonal feels degenerate, but degeneracy is about parallel columns, not about zeros sitting anywhere.

L2 — Application

Goal: run the swap–negate–divide recipe start to finish, correctly.

Recall Solution 2.1

Step 1 — determinant (always first). . Non-zero ⟹ proceed. Why first? The whole recipe divides by ; if it were 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 , flip the middle (this is the defined above): Step 3 — divide by det. Step 4 — verify (cheap insurance): ✓.

Recall Solution 2.2

Step 1 — determinant first. (non-zero ⟹ inverse exists). Step 2 — adjugate then divide. Step 3 — solve. Left-multiply by to get (see Solving linear systems): Check: ✓, ✓. So .


L3 — Analysis

Goal: reason about the machinery — how det behaves, what happens at the edge.

Recall Solution 3.1

. Relationship: . Why this must be true (area picture): scales every area by a factor . The undo-machine must scale area by the reciprocal so that doing both returns the original area — see Linear transformations and area.

Recall Solution 3.2

Singular condition: So has no inverse exactly when or (the two rows become proportional). Otherwise (): Sanity check at : , ; multiply back to confirm .


L4 — Synthesis

Goal: combine the inverse with multiplication, identities and systems.

Recall Solution 4.1

Proof. To show a matrix is the inverse of , it is enough to show (see Identity matrix). Take : We used associativity to regroup, then and vanishing under multiplication. So . 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. , , so Separately , , and Match ✓.

Recall Solution 4.2

Key idea: — undoing the undo returns the original. So just invert the given matrix. Let . Check: ✓.


L5 — Mastery

Goal: prove a general fact and handle a fully symbolic / limiting case.

Recall Solution 5.1

Step 1 — compute for : Step 2 — subtract : Step 3 — rearrange: ✓ (the identity holds for every matrix). Step 4 — extract the inverse. Assume . Factor an out of the first two terms: Therefore 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. Step 2 — inverse (swap corners, flip middle, divide by ): Step 3 — limiting behaviour. As the divisor shrinks toward zero, so each entry (and ): the inverse blows up without bound. Step 4 — the singular limit. At exactly we have with and two identical (hence parallel) columns, so 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 . At the wall 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.

The figure below plots exactly this collapse.

Figure — Inverse of 2×2 matrix

Active recall

Which single number decides invertibility of a matrix?
The determinant ; invertible iff it is non-zero.
State in terms of .
(order reverses).
How does relate to ?
.
What is ?
itself (undoing the undo).
For , which make it singular?
, since .
As , what happens to ?
Its entries blow up to ; at no inverse exists.
What is the adjugate of ?
; then .

Connections