The Grid Warper: A Matrix is a Transformation of Space
A 2×2 matrix takes the whole plane and warps it — and its two columns tell you exactly where the basis vectors land.
A matrix does something
It is easy to see a matrix as a static table of numbers. The powerful view is dynamic: a matrix is a linear transformation — a machine that takes in a vector and outputs a new one, warping the whole plane in the process. Straight grid lines stay straight and parallel, evenly spaced lines stay evenly spaced, and the origin stays put. Only stretching, rotating, shearing and flipping are allowed.
Why the columns are enough
Any vector (x, y) is just x e1 + y e2 — x steps along the first basis arrow plus y steps along the second. Because the transformation is linear, it respects that recipe: the image of (x, y) is x (image of e1) + y (image of e2). So the two columns, scaled by x and y and added, give the output. That is exactly the matrix–vector product.
- First column (2, 0) is where e₁ lands; second column (1, 1) is where e₂ lands.
- Combine them: \( 3\begin{bmatrix}2\\0\end{bmatrix}+2\begin{bmatrix}1\\1\end{bmatrix}=\begin{bmatrix}6\\0\end{bmatrix}+\begin{bmatrix}2\\2\end{bmatrix} \).
- Or row by row: top = 2·3 + 1·2 = 8, bottom = 0·3 + 1·2 = 2.
The determinant: how much area is scaled
The transformation takes the unit square (spanned by e1 and e2) to a parallelogram (spanned by the two columns). The determinant ad − bc is the area of that parallelogram — the factor by which the transformation scales every area. A determinant of 6 means areas grow six-fold; a determinant of 1 preserves area; a determinant of 0 collapses the plane onto a line.
Check your understanding
- A 2×2 matrix is a linear transformation: it warps the plane while keeping grid lines straight and the origin fixed.
- The columns of the matrix are the images of the basis vectors e₁ and e₂ — they encode the whole map.
- Applying a matrix to (x, y) is a weighted sum of its columns: (ax + by, cx + dy).
- The determinant ad − bc is the area scaling factor; its sign records whether orientation is flipped.
- Det = 0 collapses the plane onto a line and makes the matrix non-invertible; nonzero det means invertible.