Introduction to Transformations Using Matrices
Welcome to the world of matrix transformations! If you’ve ever played a video game or used photo-editing software to rotate or resize a picture, you’ve seen matrix transformations in action. In this chapter of Further Pure Mathematics 1 (FP1), we will learn how to use small 2x2 grids of numbers (matrices) to move, flip, stretch, and spin shapes on a graph. Don’t worry if matrices felt like "just numbers" before—here, they become tools for creating motion!
1. What is a Linear Transformation?
A linear transformation is a rule that moves a point \( (x, y) \) to a new position \( (x', y') \). We represent the original point as a column vector:
\( \begin{pmatrix} x \\ y \end{pmatrix} \)
When we multiply this vector by a 2x2 matrix, we get the "image" or the new position of that point. It's like giving the point a set of GPS instructions on where to go next.
The Secret Tool: The Unit Square
The easiest way to understand any matrix is to see what it does to two specific points: \( I(1, 0) \) and \( J(0, 1) \). These are the corners of a "unit square."
If a matrix is \( \begin{pmatrix} a & b \\ c & d \end{pmatrix} \):
- The first column \( \begin{pmatrix} a \\ c \end{pmatrix} \) is where the point \( (1, 0) \) lands.
- The second column \( \begin{pmatrix} b \\ d \end{pmatrix} \) is where the point \( (0, 1) \) lands.
Quick Review: To find the matrix for any transformation, just ask: "Where does \( (1, 0) \) go?" and "Where does \( (0, 1) \) go?" Put those two new coordinates into the columns of your matrix!
2. Standard Geometrical Transformations
The syllabus requires you to recognize and use several specific transformations. Let's break them down.
A. Reflections
Imagine placing a mirror on the graph. A reflection flips the shape over a specific line.
- Reflection in the x-axis: The point \( (1,0) \) stays at \( (1,0) \), but \( (0,1) \) flips to \( (0,-1) \). Matrix: \( \begin{pmatrix} 1 & 0 \\ 0 & -1 \end{pmatrix} \)
- Reflection in the y-axis: The point \( (1,0) \) flips to \( (-1,0) \), but \( (0,1) \) stays at \( (0,1) \). Matrix: \( \begin{pmatrix} -1 & 0 \\ 0 & 1 \end{pmatrix} \)
- Reflection in the line \( y = x \): This swaps the \( x \) and \( y \) coordinates. Matrix: \( \begin{pmatrix} 0 & 1 \\ 1 & 0 \end{pmatrix} \)
- Reflection in the line \( y = -x \): Swaps coordinates and changes their signs. Matrix: \( \begin{pmatrix} 0 & -1 \\ -1 & 0 \end{pmatrix} \)
B. Rotations
A rotation turns a shape around the origin \( (0, 0) \). In Mathematics, positive angles always mean anti-clockwise rotation!
The general matrix for a rotation of \( \theta \) anti-clockwise about the origin is:
\( \begin{pmatrix} \cos \theta & -\sin \theta \\ \sin \theta & \cos \theta \end{pmatrix} \)
Example: For a 90° anti-clockwise rotation, \( \cos 90 = 0 \) and \( \sin 90 = 1 \). The matrix becomes \( \begin{pmatrix} 0 & -1 \\ 1 & 0 \end{pmatrix} \).
C. Enlargements and Stretches
These change the size of the shape.
- Enlargement (Center (0,0), Scale Factor \( k \)): Makes the whole shape \( k \) times bigger. Matrix: \( \begin{pmatrix} k & 0 \\ 0 & k \end{pmatrix} \)
- Stretch parallel to the x-axis (Scale Factor \( k \)): Pulls the shape horizontally like a piece of dough. Matrix: \( \begin{pmatrix} k & 0 \\ 0 & 1 \end{pmatrix} \)
- Stretch parallel to the y-axis (Scale Factor \( k \)): Pulls the shape vertically. Matrix: \( \begin{pmatrix} 1 & 0 \\ 0 & k \end{pmatrix} \)
Key Takeaway: Reflections and rotations usually involve 0s, 1s, or trig values. Stretches and enlargements use a scale factor \( k \).
3. Combined Transformations
What if you want to rotate a shape and then reflect it? This is called a combination of transformations.
If transformation \( B \) is represented by matrix \( \mathbf{B} \) and transformation \( A \) is represented by matrix \( \mathbf{A} \), the combined transformation "B followed by A" is represented by the matrix product:
\( \mathbf{AB} \)
Common Mistake Alert: The order is backwards! If you do \( B \) first, its matrix goes on the right. Think of it like a function: \( A(B(x)) \). The one closest to the vector \( x \) happens first.
Memory Aid: "Right to Left." Read the matrix multiplication from right to left to see the order of events.
4. Determinants and Area
There is a beautiful connection between the determinant of a matrix and the shape it transforms. If you have a matrix \( \mathbf{M} \):
Area of Image = \( | \det(\mathbf{M}) | \times \) Area of Original Shape
The determinant tells you the area scale factor.
- If \( \det(\mathbf{M}) = 3 \), the new shape has 3 times the area.
- If \( \det(\mathbf{M}) = 1 \), the area doesn't change (like in a rotation or reflection).
- If \( \det(\mathbf{M}) \) is negative, the shape has been inverted (flipped over), but you use the positive value (absolute value) for the area scale factor.
Did you know? If the determinant is 0, the matrix is "singular." This means it squashes the entire 2D shape into a single line or a point, so it has 0 area!
5. Inverse Transformations
An inverse matrix \( \mathbf{M}^{-1} \) acts as an "undo" button. If matrix \( \mathbf{M} \) rotates a shape 30°, then \( \mathbf{M}^{-1} \) will rotate it back -30°.
If a transformation is a combination \( \mathbf{AB} \) (meaning \( B \) then \( A \)), the inverse to undo the whole thing is:
\( (\mathbf{AB})^{-1} = \mathbf{B}^{-1}\mathbf{A}^{-1} \)
Notice the order swaps! It’s like getting dressed: you put on socks then shoes (\( AB \)). To undo it, you must take off shoes then socks (\( B^{-1}A^{-1} \)).
Quick Review:
1. The determinant is the area scale factor.
2. The inverse matrix reverses the transformation.
3. To find the inverse of a combined transformation, reverse the order and invert each matrix.
Summary Checklist for Success
Before your exam, make sure you can:
- Identify the matrix for reflections in \( x=0, y=0, y=x, y=-x \).
- Construct a rotation matrix for any angle \( \theta \).
- Combine two transformations by multiplying matrices in the correct (reverse) order.
- Use the determinant to find the area of a transformed shape.
- Explain what the inverse of a transformation matrix does.
Don't worry if this seems tricky at first! Try drawing the unit square and moving its corners \( (1,0) \) and \( (0,1) \) manually—the matrices will start to make much more sense visually!