Visualize 2D linear transformations interactively. See how matrices transform space by watching basis vectors, the unit square, and eigenvectors respond to rotations, scaling, shearing, and reflections.
A 2x2 matrix represents a linear transformation of 2D space. The columns of the matrix tell you where the basis vectors i-hat (1,0) and j-hat (0,1) land after the transformation. Every other point in space follows accordingly, maintaining the grid lines parallel and evenly spaced.
| Property | Formula | Geometric Meaning |
|---|---|---|
| Determinant | ad - bc | Area scaling factor; sign = orientation |
| Trace | a + d | Sum of eigenvalues |
| Inverse | (1/det)[d,-b;-c,a] | Undo the transformation |
| Eigenvalues | (tr +/- sqrt(tr^2-4det))/2 | Scale factors along invariant directions |
| Singular | det = 0 | Collapses dimension; not invertible |
| Orthogonal | M^T * M = I | Preserves lengths and angles |