You are viewing a free preview of this lesson.
Subscribe to unlock all 10 lessons in this course and every other course on LearningBro.
Matrices can represent linear transformations — geometric operations such as reflections, rotations, enlargements, and shears. This lesson covers how to find the matrix of a 2D transformation and how to combine transformations using matrix multiplication.
A transformation T:R2→R2 is linear if:
Every linear transformation of R2 can be represented by a 2×2 matrix M:
T(xy)=M(xy)
The matrix M has columns that are the images of the standard basis vectors e1=(10) and e2=(01):
M=∣T(e1)∣∣T(e2)∣
| Transformation | Matrix |
|---|---|
| Reflection in the x-axis | (100−1) |
| Reflection in the y-axis | (−1001) |
| Reflection in y=x | (0110) |
| Reflection in y=−x | (0−1−10) |
| Rotation by θ anticlockwise | (cosθsinθ−sinθcosθ) |
| Enlargement, scale factor k | (k00k) |
| Stretch in x-direction, factor a | (a001) |
| Shear (x-direction), factor k | (10k1) |
Example 1: Find the matrix representing rotation by 90° anticlockwise.
θ=90°: cos90°=0, sin90°=1.
M=(01−10)
Check: (10)↦(01) (90° anticlockwise ✓).
Example 2: Find the image of the point (3,1) under reflection in y=x.
(0110)(31)=(13)The image is (1,3).
If transformation S is represented by matrix A and transformation T by matrix B, then:
The order matters: the transformation applied first is the right matrix.
Worked Example 3: Find the matrix representing a reflection in the x-axis followed by a rotation of 90° anticlockwise.
Reflection in x-axis: A=(100−1). Rotation 90° anticlockwise: B=(01−10).
"Reflection followed by rotation" means reflection first, then rotation: BA.
Subscribe to continue reading
Get full access to this lesson and all 10 lessons in this course.