Linear Transformations: A transformation is linear if it maps a vector to a new vector such that it preserves vector addition and scalar multiplication. In a 2D plane, this means the origin remains fixed and straight lines remain straight and parallel.
Matrix Representation: Every linear transformation can be represented by a unique matrix . If a point is represented as a column vector , the transformed point is found by the product .
The Unit Square Basis: The columns of a transformation matrix represent the images of the standard basis vectors and . By tracking where these two unit vectors land, one can define the entire transformation matrix.
Scaling: A scaling matrix stretches or shrinks the plane along the axes. The matrix scales the x-coordinate by and the y-coordinate by .
Reflection: Reflections flip the plane across a line. For example, reflection across the x-axis is , while reflection across the line swaps coordinates using .
Rotation: Rotation about the origin by an angle (counter-clockwise) is achieved using the matrix:
Area Scale Factor: The absolute value of the determinant of a transformation matrix, , represents the factor by which the area of any shape is scaled. If , the transformed shape has three times the area of the original.
Orientation: The sign of the determinant indicates whether the orientation of the plane is preserved. A positive determinant means orientation is kept, while a negative determinant indicates a reflection has occurred, 'flipping' the plane.
Singular Matrices: If , the transformation collapses the plane into a lower dimension (a line or a point). Such transformations are not invertible because information about the original coordinates is lost.
| Feature | Linear Transformation | Translation (Non-Linear) |
|---|---|---|
| Origin | Always remains at | Can move to a new position |
| Representation | Single matrix multiplication | Vector addition: |
| Lines | Straight lines stay straight | Straight lines stay straight |
Rotation vs. Reflection: Rotation preserves the 'handedness' of the coordinate system (positive determinant), whereas reflection reverses it (negative determinant).
Scaling vs. Shearing: Scaling changes the dimensions of an object along the axes, while shearing slides one part of the object relative to another, changing angles but potentially preserving area if the determinant is 1.
The Identity Check: Always remember that the identity matrix represents 'no change'. If a problem asks for a transformation that leaves a specific axis unchanged, ensure that axis's basis vector remains or in the matrix.
Verify with the Unit Square: To check if a matrix is correct, mentally apply it to the points and . If the matrix is , the first column is where lands and the second column is where lands.
Determinant Sanity Check: If you are performing a reflection or rotation, the absolute value of the determinant MUST be 1. If you calculate a different value, you have likely made an arithmetic error in your matrix entries.
Order Matters: In composite transformation questions, write the matrices in the reverse order of the description (e.g., 'A then B' becomes ).