22 min read
Reflection and Rotation Matrices
Specific 2×2 matrices reflect points in a line, or rotate them around the origin, by a fixed angle.
Standard Matrices
| Common reflection and rotation matrices | |
|---|---|
Example 1 — reflecting in the x-axis
Reflect (, ) in the -axis using .
- Multiply: top entry = () + () = . Bottom entry = () + () =
Answer: (, )
Example 2 — rotating 90° anticlockwise
Rotate (, ) by ° anticlockwise about the origin using .
- Multiply: top entry = () + () = . Bottom entry = () + () =
Answer: (, )
Transform lab
P = (2, 5) · scaled ≈ (2.00, 5.00) · rotated ≈ (-5.00, 2.00) · scale then rotate ≈ (-5.00, 2.00)
Change a value and watch: Drag the angle to ° and check the point lands on (, ), matching Example .
Practice
Reflect (, ) in the -axis using . Find the new -coordinate.
Your answer
More lessons in Matrices and Determinants · Next: Enlargement and Combined Transformations · Previous: Introduction to Matrix Transformations
