Contents · Linear Algebra
Part 0 · Orientation
- What Linear Algebra Is Really About
Part 1 · Vectors & Spaces
Part 2 · Matrices as Maps
Part 3 · Solving Systems
Part 4 · Orthogonality
Part 5 · Eigenvalues
Part 6 · Singular Value Decomposition
Part 7 · Spectral & Positive Definite
Part 8 · Numerical Linear Algebra
Part 0 · Orientation
What Linear Algebra Is Really About
A vector has two faces. It is an arrow with a direction and a length, and it is a list of numbers, its coordinates in some basis. Linear algebra is the study of the maps that respect this structure, and its central surprise is that one such map and one grid of numbers, a matrix, are the same object seen two ways.
Linear maps
Fix vector spaces and call a function linear when it commutes with the two operations vectors have, addition and scaling:
That single rule is strong. Write any vector in the standard basis , as . Applying and using linearity once for each term,
So is pinned down everywhere by the two output vectors and . Know where the basis lands and you know the whole map.
A matrix is a linear map
Stack those two images as the columns of a matrix,
and the formula above is exactly the matrix-vector product:
Reading it backward gives the fact worth memorizing: is the first column and is the second column, because . A matrix is a table of where the basis vectors go. Multiplying by is applying the map .1
- A e₁ (col 1)
- (2.0, 0.0)
- A e₂ (col 2)
- (1.0, 3.0)
- A x
- (3.0, 3.0)
- det = ad − bc
- 6.00 − 0.00 = 6.00
Area scale = |det| = 6.00. The unit square becomes a parallelogram of that area.
A worked example
Take
The columns tell us immediately where the basis lands,
and any other vector follows by linear combination. For ,
We never needed a new rule, only , , and linearity. The same computation done componentwise reads and .
The determinant is area scaling
The unit square with sides and has area . Under it becomes the parallelogram with sides and , and the (signed) area of that parallelogram is the determinant,
For the example, : every region has its area multiplied by . The sign carries orientation. If the map flips the plane over (the demo's parallelogram turns inside out), and if the two columns are parallel, the square collapses onto a line, and crushes the whole plane into a lower dimension. That last case is precisely when has no inverse, which is the thread Part 1 picks up.
Footnotes
-
Strang, Introduction to Linear Algebra (5th ed., 2016). ↩