Intuition The one core idea
A 2 × 2 matrix is a machine that reshapes flat space , and its inverse is the machine that puts every point back exactly where it started. To understand the inverse formula you need only three pictures: a matrix acting on arrows, a determinant measuring the area it produces, and the identity matrix as the "do-nothing" machine — everything else on the parent page is bookkeeping around these three.
This page builds every symbol used by the parent note starting from a blank page. If a symbol appears there, it is defined here first, anchored to a picture, and justified.
2 × 2 case)
A matrix is a rectangular grid of numbers. A 2 × 2 matrix has two rows and two columns — four numbers in a box:
A = ( a c b d )
The name A is just a label for the whole box, the way x is a label for a single number.
The letters a , b , c , d are placeholders for actual numbers. Their positions have names you must never forget:
a = top-left, d = bottom-right → together these are the main diagonal (the corner-to-corner line going ↘).
b = top-right, c = bottom-left → these are the off-diagonal (the other corners).
Intuition Why arrange numbers in a box at all?
A matrix is not just storage — it is a recipe for transforming arrows . The box layout is exactly what makes the "row meets column" multiplication rule (Section 4) work. Look at the figure: the main diagonal (orange) and off-diagonal (teal) get treated differently by every rule on the parent page, so learning to see them apart is step one.
A vector is a list of numbers stacked vertically. In 2D it holds two numbers:
x = ( x 1 x 2 )
The little arrow on x marks it as a vector, not a plain number.
The picture: a vector is an arrow from the origin ( 0 , 0 ) to the point ( x 1 , x 2 ) . The first number says how far right, the second how far up.
Intuition Why does the topic need vectors?
The parent note's first sentence says "a matrix transforms vectors: x ↦ A x ." Without knowing an arrow is a vector, that sentence is meaningless. Vectors are the inputs and outputs of the matrix machine. See Linear transformations and area for the full story of how boxes move arrows.
The symbol ↦ (read "maps to") means "the machine sends this input to that output." So x ↦ A x reads: "the arrow x is sent to the new arrow A x ."
Every vector in 2D is built from two basic arrows :
e ^ 1 = ( 1 0 ) ( one step right ) , e ^ 2 = ( 0 1 ) ( one step up ) .
Intuition Why these two matter for matrices
Here is the secret decoder ring: the columns of a matrix tell you where these two arrows land. The first column ( c a ) is where e ^ 1 goes; the second column ( d b ) is where e ^ 2 goes. That is why the parent note keeps talking about "the columns of A " — the columns are the transformation's fingerprints.
Definition Matrix × vector
To multiply a matrix by a vector, each row of the matrix meets the vector: multiply matching entries, then add.
( a c b d ) ( x 1 x 2 ) = ( a x 1 + b x 2 c x 1 + d x 2 )
Definition Matrix × matrix
Same idea, done column by column. Each column of the answer is (the left matrix) applied to the matching column of the right matrix:
( a c b d ) ( p r q s ) = ( a p + b r c p + d r a q + b s c q + d s )
Intuition Why "row meets column"?
WHAT we did: paired each row of the first box with each column of the second, multiplied across, summed. WHY: this is the only rule that makes "apply machine B , then apply machine A " equal to "apply the single machine A B ." Multiplication of matrices is composition of transformations. This exact expansion is what produces the parent note's four equations a p + b r = 1 , etc. See Matrix multiplication .
Worked example Warm-up multiply
( 2 3 1 4 ) ( 4 − 3 − 1 2 )
Top-left: 2 ⋅ 4 + 1 ⋅ ( − 3 ) = 8 − 3 = 5 . Top-right: 2 ⋅ ( − 1 ) + 1 ⋅ 2 = 0 . Bottom-left: 3 ⋅ 4 + 4 ⋅ ( − 3 ) = 0 . Bottom-right: 3 ⋅ ( − 1 ) + 4 ⋅ 2 = 5 .
Result: ( 5 0 0 5 ) . (This is exactly the parent's Example 1 verification, before dividing by 5 .)
Definition Identity matrix
I
I = ( 1 0 0 1 )
For any vector, I x = x — it changes nothing.
The picture: I sends e ^ 1 to ( 0 1 ) (itself) and e ^ 2 to ( 1 0 ) (itself). Nothing moves.
Intuition Why the inverse aims at
I
"Undo" means: machine, then un-machine, leaves you where you started — i.e. the do-nothing machine. That is precisely the equation A A − 1 = I . The identity is the target of every inverse. See Identity matrix .
Definition Determinant of a
2 × 2 matrix
det A = a d − b c
A single number computed by "main-diagonal product minus off-diagonal product."
But what is it ? The picture: draw the two columns of A as arrows from the origin. They span a parallelogram . The determinant is the signed area of that parallelogram.
Intuition Every sign, and the zero case
Positive det : columns keep their orientation (turn from column 1 to column 2 is counter-clockwise). Area is genuine.
Negative det : the machine flips the plane over (like a mirror); the "signed" area is negative, but its size is still the parallelogram's area.
Zero det : the two column arrows point along the same line — the parallelogram is squashed flat, area = 0 . This is the singular case: information is lost and no inverse exists.
WHY the topic needs this: the inverse formula divides by det A . A machine that squashes to zero area cannot be undone, and the formula warns you by refusing to divide by zero. See Determinant of a 2×2 matrix and Linear transformations and area .
Common mistake "The determinant is
ab − c d ."
Why it feels right: you grab the top pair and the bottom pair.
Why wrong: the rule pairs diagonals , not rows. It is main diagonal a d minus off-diagonal b c .
Fix: det = a d − b c — corners going ↘ minus corners going ↙.
A − 1
A − 1 (read "A inverse") is the machine that satisfies A A − 1 = A − 1 A = I . The superscript − 1 echoes numbers, where 5 − 1 = 5 1 and 5 ⋅ 5 − 1 = 1 . Here the "1 " is the identity matrix I .
The adjugate is the box you get by swapping the main diagonal and negating the off-diagonal:
adj A = ( d − c − b a )
The parent's whole formula is then A − 1 = det A 1 adj A . See Adjugate and cofactors .
Two ordinary equations,
{ 2 x + y = 5 3 x + 4 y = 6
pack into one matrix sentence:
A ( 2 3 1 4 ) x ( x y ) = b ( 5 6 )
Check with the row rule: row 1 gives 2 x + 1 y = 5 ✓, row 2 gives 3 x + 4 y = 6 ✓.
Intuition Why this packing matters
Once written as A x = b , solving becomes "undo A ": x = A − 1 b . This is the payoff of the whole topic. See Solving linear systems .
Plain numbers and arithmetic
Matrix as a box of numbers
Matrix multiplication row meets column
Identity matrix do nothing
Determinant as signed area
Inverse undoes the machine
Singular when det is zero
Read each question, answer in your head, then reveal.
Where are the main-diagonal entries of ( a c b d ) ? The top-left a and bottom-right d (the ↘ corners).
Where are the off-diagonal entries? The top-right b and bottom-left c (the ↙ corners).
What does the arrow on x tell you? That
x is a vector (an arrow), not a single number.
What do the two columns of a matrix represent geometrically? Where the basic arrows e ^ 1 and e ^ 2 land after the transformation.
Multiply ( a c b d ) ( x 2 x 1 ) . ( c x 1 + d x 2 a x 1 + b x 2 ) — each row meets the vector, multiply and add.
What is the identity matrix and what does it do? ( 1 0 0 1 ) ; it leaves every vector unchanged.
What does det A = a d − b c measure? The signed area of the parallelogram spanned by the columns of A .
What does det A = 0 mean geometrically? The two columns are parallel; area is squashed to zero, so the machine cannot be undone.
What does the notation A − 1 mean? The machine with A A − 1 = A − 1 A = I — it undoes A .
What is the adjugate of ( a c b d ) ? ( d − c − b a ) (swap diagonal, negate off-diagonal).
Rewrite 2 x + y = 5 , 3 x + 4 y = 6 as a matrix equation. ( 2 3 1 4 ) ( y x ) = ( 6 5 ) , i.e.
A x = b .