18 min read
Introduction to Matrix Transformations
Multiplying a coordinate point by a special matrix moves it geometrically — reflecting, rotating, or scaling it.
Moving Points With Matrices
Transform lab
P = (3, 2) · scaled ≈ (3.00, 2.00) · rotated ≈ (3.00, 2.00) · scale then rotate ≈ (3.00, 2.00)
Change a value and watch: Adjust the scale and angle and watch the point move. This is exactly what a transformation matrix does, written as a single calculation.
Example 1 — a coordinate-swap transformation
Apply the matrix to the point (, ).
- Write the point as a column:
- Multiply: top entry = () + () = . Bottom entry = () + () =
Answer: (, ) — this matrix reflects a point in the line
Practice
What does the identity matrix do when applied to any point?
More lessons in Matrices and Determinants · Next: Reflection and Rotation Matrices · Previous: Solving Simultaneous Equations With Matrices
