Before matrices, people were just trying to make tangled equations behave
This is the bridge before the visual lessons: linear algebra did not fall out of the sky as formulas. It grew from a very human need to organize many conditions at once.
01
Opening scene
The first problem was simple: many unknowns, one answer that must satisfy everything.
Before the word matrix mattered, people were already meeting equations where several unknowns had to be true at the same time.
{
2x + y = 5x + 2y = 4
Many conditions, one shared answer
With x and y together, we are not solving one isolated number anymore. We are looking for one point that satisfies every condition.
02
Remove the noise
If the variables repeat anyway, what if we keep only the numbers?
The clever move is to temporarily strip away x and y, then keep the coefficients and results in rows.
2
1
5
1
2
4
Remove the variable names and keep the structure
Once the equations become rows, we can add, subtract, or scale entire rows while keeping the same story.
03
From table to action
A matrix stops being a table when it starts moving space.
Coordinates changed the question. A set of numbers could now describe where the axes move.
กริดเดิม 1:1
ij
1
0
0
1
i = (1,0), j = (0,1)
→
คำสั่งใหม่
ij
2
1
0
1
i → (2,0), j → (1,1)
=
x' = 2x + yy' = 0x + y
Animation loads on scroll
The first column tells where the i basis vector lands. The second column tells where j lands. Once those two moves are known, the whole grid follows.
04
Chain the machines
Matrix multiplication is what happens when transformations line up.
If B moves the grid, and A moves the result again, we need one matrix that describes the whole trip.
A
B→A→AB
ต่อกัน(matrix multiplication)
→det
พื้นที่(determinant)
A↺A⁻¹
undo(inverse)
x?→A→b
ย้อนหา x(solve Ax=b)
Four questions, one underlying idea
That is why multiplication is more than row times column. It is two actions compressed into one action.
05
The det question
Some transformations stretch. Some flip. Some crush space until information disappears.
The determinant asks how much one unit square changes area, whether orientation flips, and whether the space collapses.
กรณีที่ 1: พื้นที่ขยายออก (det = 3)
det
3
0
0
1
= 3(1) - 0(0) = 3
Animation loads on scroll
When det = 0, area has collapsed into a line or a point. A direction has been lost, so a clean undo is impossible.
06
Undo
If the transform did not collapse space, can we reverse it?
The inverse should feel like an undo button before it feels like a formula.
A
A⁻¹
กลับบ้านได้(inverse exists)
A
?
ข้อมูลหายไปแล้ว(no inverse)
Do the move, then undo it back to identity
If det is zero, many old points have merged. There is no reliable way to send the result back to one original point.
07
Back to the original question
Ax=b asks: where must x start so A sends it to b?
Now the pieces connect: A is the transformation, x is the starting point, and b is the target.
2
1
1
2
x₁
x₂
=
b₁
b₂
Where should x start so A sends it to b?
Conceptually, x = A⁻¹b when undo exists. In real computation, elimination is often the scalable tool.
Once this story clicks, the formulas stop floating.
Next, start with Linear Transformations, because that is the picture that makes multiplication, determinant, inverse, and Ax=b feel connected.