2.6.10 · D3Matrices & Determinants — Introduction

Worked examples — Inverse of 2×2 matrix

2,312 words11 min readBack to topic

Recall the two objects we will use over and over. For

Here (read "determinant of ") is the single number — see Determinant of a 2×2 matrix. It is the divisor, so it decides everything.


The scenario matrix

Every inverse problem falls into one of these case classes. Each row is a distinct trap or skill; the last column says which worked example covers it.

# Case class What's special / what could go wrong Covered by
C1 All entries positive, The "clean" baseline case Ex 1
C2 Negative entries, Negative determinant — sign must survive to the end Ex 2
C3 Fractional / decimal entries Determinant is a fraction, dividing gets messy Ex 3
C4 (singular) No inverse exists — must detect and stop Ex 4
C5 A zero entry ( or , triangular) Degenerate-looking but still invertible Ex 5
C6 Solving a linear system Application, not just inversion Ex 6
C7 Real-world word problem Translate words → matrix → solve Ex 7
C8 Exam twist: find unknown making singular Reverse the logic: set Ex 8

Two figures illustrate the geometry behind the extreme rows: C4 (area collapses) and C2 (a flip).


Example 1 — C1: the clean positive case


Example 2 — C2: negative entries, negative determinant

A negative determinant means the transformation flips orientation (like a mirror) as well as rescaling. Look at the figure below: the violet unit square is traced counter-clockwise, but after applying the orange parallelogram's corners run clockwise (follow the magenta arrows). That reversal — corners going the "wrong way round" — is exactly what a negative records; the area magnitude is how much the square was enlarged.

Figure — Inverse of 2×2 matrix

Example 3 — C3: fractional and decimal entries


Example 4 — C4: the singular case (no inverse)

The figure makes the collapse concrete. The violet unit square (area ) is fed into . Its image is not a parallelogram at all — it is the single magenta line segment: every point of the plane lands somewhere on that one line. The two column vectors, orange and navy , lie exactly on top of each other's direction (navy orange), which is why the square has nowhere to spread into. With zero area there is no way to "un-flatten" back to the original square — hence no inverse.

Figure — Inverse of 2×2 matrix

Example 5 — C5: a zero entry (triangular matrix)


Example 6 — C6: solving a linear system


Example 7 — C7: real-world word problem


Example 8 — C8: exam twist, find that makes singular


Active recall

Recall Which case classes are "safe to invert" and which are not?

Safe (invertible): C1, C2, C3, C5, C6, C7 — all have . Not invertible: C4 (and C8 at ) — .

A zero entry means the matrix is singular.
False — a zero entry (Ex 5) still gave . Only means singular.
A negative determinant means no inverse.
False — (Ex 2) is fine; it just flips orientation. Only exactly blocks the inverse.
To find making singular, you…
solve for (Ex 8).
To solve with the inverse, compute…
(Ex 6).

Connections