Linear Transformations: A transformation is a mapping that moves a point , known as the object, to a new position , known as the image. In matrix algebra, this is achieved by representing the point as a column vector and multiplying it by a transformation matrix .
Matrix Representation: To find the image of a point, the matrix is placed to the left of the column vector. The resulting calculation follows the standard row-by-column multiplication rule:
Vertex Matrices: When transforming a geometric shape, the coordinates of all vertices can be combined into a single vertex matrix where each column represents a point. Multiplying the transformation matrix by this vertex matrix produces a new matrix where each column is the corresponding image vertex.
The Unit Square Method: Any transformation matrix can be derived by observing the movement of the unit vectors and . If moves to and moves to , the transformation matrix is simply the concatenation of these two image vectors as columns: .
Preservation of the Origin: Because these are linear transformations, the origin is always an invariant point. This means that no matter the matrix, the origin will always map to itself, as .
Linearity and Straight Lines: A key property of these transformations is that they map straight lines to straight lines. While the lengths and angles between lines may change, the fundamental linear structure of the geometry is preserved.
Successive Transformations: When applying multiple transformations, the order of matrix multiplication is critical. If transformation is applied first and is applied second, the combined matrix is calculated as . The first transformation always appears on the right.
Inverse Transformations: The inverse matrix represents the reverse transformation that maps the image back to the original object. Applying a transformation followed by its inverse results in the identity matrix , which represents no change.
Inverse of Combined Matrices: To reverse a sequence of transformations, one must reverse each individual step in the opposite order. Algebraically, .
| Feature | Enlargement | Stretch |
|---|---|---|
| Scaling | Uniform in all directions | Parallel to a specific axis |
| Matrix Form | or | |
| Area Factor | or |
Rotation vs. Reflection: Rotations preserve the 'sense' (orientation) of the shape and usually have a determinant of . Reflections reverse the 'sense' and always have a determinant of .
vs. : Reflection in uses the matrix with s on the off-diagonal. Reflection in uses s on the off-diagonal. Confusing these is a common source of error.
The Unit Square Check: If you forget a standard matrix, mentally (or physically) draw the unit square and see where and land. This is the most reliable way to reconstruct any reflection or rotation matrix.
Order of Operations: Always write combined transformations from right to left. For 'Transformation A followed by Transformation B', the calculation is . Reversing this order is the most common reason for lost marks.
Area Problems: When asked to find a missing constant in a matrix given an area change, always use the modulus: . This often leads to two possible algebraic solutions (one positive, one negative).
Verification: Check your result by transforming a simple point like . If the resulting image doesn't match the geometric description (e.g., it's in the wrong quadrant for a rotation), re-check your matrix multiplication.