2.6.10Matrices & Determinants — Introduction

Inverse of 2×2 matrix

1,723 words8 min readdifficulty · medium6 backlinks

WHAT is an inverse?

For a 2×22\times 2 matrix A=(abcd)A = \begin{pmatrix} a & b \\ c & d \end{pmatrix}


HOW: Deriving the formula from scratch

We want A1=(pqrs)A^{-1} = \begin{pmatrix} p & q \\ r & s \end{pmatrix} such that AA1=IA A^{-1} = I.

Why start here? Because "inverse" is defined by AA1=IAA^{-1}=I — so we just impose that condition and solve.

(abcd)(pqrs)=(1001)\begin{pmatrix} a & b \\ c & d \end{pmatrix}\begin{pmatrix} p & q \\ r & s \end{pmatrix} = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}

Multiplying out gives four equations:

ap+br=1(1)aq+bs=0(2)cp+dr=0(3)cq+ds=1(4)\begin{aligned} ap + br &= 1 \quad(1) &\qquad aq + bs &= 0 \quad(2)\\ cp + dr &= 0 \quad(3) &\qquad cq + ds &= 1 \quad(4) \end{aligned}

Solve for p,rp, r (columns of the answer) using (1) and (3). Why these two? They only involve p,rp,r — a clean 2-variable system.

From (3): cp+dr=0r=cpdcp + dr = 0 \Rightarrow r = -\dfrac{cp}{d} (assume d0d\neq0 for now). Substitute into (1): ap+b(cpd)=1padbcd=1p=dadbcap + b\left(-\frac{cp}{d}\right) = 1 \Rightarrow p\,\frac{ad - bc}{d} = 1 \Rightarrow p = \frac{d}{ad-bc}

Then r=cadbcr = -\dfrac{c}{ad-bc}.

Solve for q,sq,s using (2) and (4). By identical algebra: q=badbc,s=aadbcq = \frac{-b}{ad-bc}, \qquad s = \frac{a}{ad-bc}

The quantity adbcad-bc appears everywhere — call it the determinant detA\det A.


Figure — Inverse of 2×2 matrix

Worked examples


Common mistakes (steel-manned)


Recall Feynman: explain it to a 12-year-old

Imagine a machine that takes a shape and stretches/tilts it. The inverse machine puts the shape back exactly as it was. To build the "undo" machine for a 2×2 grid of numbers: swap the two numbers on the main diagonal, put minus signs on the other two, and shrink everything by a special number called the determinant. If that special number is zero, the machine flattened the shape into a line and lost so much information that no "undo" machine can ever rebuild it — like un-mixing paint. So: zero determinant = no undo.


Active recall

What is the defining property of A1A^{-1}?
AA1=A1A=IAA^{-1}=A^{-1}A=I (identity matrix).
Formula for the inverse of (abcd)\begin{pmatrix}a&b\\c&d\end{pmatrix}?
1adbc(dbca)\frac{1}{ad-bc}\begin{pmatrix}d&-b\\-c&a\end{pmatrix}.
What is the determinant of a 2×2 matrix (abcd)\begin{pmatrix}a&b\\c&d\end{pmatrix}?
adbcad-bc.
When does a 2×2 matrix have NO inverse?
When detA=adbc=0\det A = ad-bc = 0 (matrix is singular).
Geometric meaning of detA=0\det A = 0?
Columns are parallel; the map flattens area to zero, losing information.
In the inverse recipe, what happens to the main diagonal entries a,da,d?
They are swapped.
In the inverse recipe, what happens to bb and cc?
They are negated (sign flipped).
How do you solve Ax=bA\vec x=\vec b using the inverse?
x=A1b\vec x = A^{-1}\vec b.
Why is "reciprocal of each entry" wrong for a matrix inverse?
Because matrix multiplication mixes rows and columns; it doesn't multiply back to II.
What is the adjugate of (abcd)\begin{pmatrix}a&b\\c&d\end{pmatrix}?
(dbca)\begin{pmatrix}d&-b\\-c&a\end{pmatrix}, and A1=1detAadjAA^{-1}=\frac{1}{\det A}\text{adj}\,A.

Connections

  • Determinant of a 2×2 matrix — the divisor that decides invertibility.
  • Matrix multiplication — needed to derive and verify AA1=IAA^{-1}=I.
  • Identity matrix — the target of the inverse product.
  • Solving linear systems — application via x=A1b\vec x = A^{-1}\vec b.
  • Adjugate and cofactors — generalizes the swap/negate pattern to n×nn\times n.
  • Singular vs non-singular matrices — the det =0=0 dividing line.
  • Linear transformations and area — why det is signed area.

Concept Map

inverse undoes

defined by

impose and solve

solve p r q s

divides into

swap diagonal negate off-diagonal

scaled by 1 over det

equals signed area

zero means

flattens plane

nonzero means

Matrix A as transform

Inverse A inverse

A times A inverse equals I

Four equations

Inverse formula

Determinant ad minus bc

Adjugate matrix

Parallelogram area

Columns parallel

No inverse singular

Invertible non-singular

Hinglish (regional understanding)

Intuition Hinglish mein samjho

Dekho, matrix AA ek machine hai jo vectors ko transform karti hai — stretch, rotate, shear. Inverse matrix A1A^{-1} wahi machine ka "undo" button hai, jo output ko wapas original input mein le aata hai. Isiliye definition hai AA1=IAA^{-1}=I (identity, yaani "kuch nahi badla"). 2×2 ke liye formula yaad rakhna simple hai: pehle determinant nikalo detA=adbc\det A = ad-bc, phir main diagonal ke aa aur dd ko swap karo, bb aur cc pe minus lagao, aur poore matrix ko detA\det A se divide kar do.

Sabse important baat: agar detA=0\det A = 0 hai, to inverse exist hi nahi karta. Kyun? Kyunki determinant matrix ke columns se bane parallelogram ka area hai. Agar area zero ho gaya, matlab columns parallel ho gaye aur poora plane ek line pe squash ho gaya — information hamesha ke liye kho gayi, jaise paint mix karne ke baad wapas alag nahi kar sakte. Isliye divide-by-zero aata hai formula mein.

Practical use: agar tumhe equations solve karni hain, jaise 2x+y=52x+y=5 aur 3x+4y=63x+4y=6, to inhe Ax=bA\vec x=\vec b likho aur x=A1b\vec x = A^{-1}\vec b se seedha answer nikal lo. Bas ek warning: pehle hamesha determinant check karo. Zero mila to ruk jao. Aur "har entry ka reciprocal le lo" wali galti mat karna — woh bilkul galat hai, kyunki matrix multiplication rows aur columns ko mix karta hai. Swap-flip-divide, bas yahi mantra hai.

Go deeper — visual, from zero

Test yourself — Matrices & Determinants — Introduction

Connections