01 Key Concepts
Linear Transformation Definition
A function T that satisfies T(u+v) = T(u)+T(v) and T(c*v) = c*T(v) for all vectors u,v and scalars c.
Matrix Representation
Every linear transformation from one finite-dimensional space to another can be represented by multiplying input vectors by a matrix: T(v) = A*v.
Common Transformations
Scaling (stretching/shrinking), rotation (turning around the origin), reflection (flipping across a line), and shearing (slanting) are all linear transformations.
Rotation Matrix
Rotating a 2D vector by angle theta counterclockwise uses the matrix [[cos(theta), -sin(theta)], [sin(theta), cos(theta)]].
Composition of Transformations
Applying one linear transformation after another corresponds to multiplying their matrices together (in the correct order).
02 Key Formulas
- T(v) = A*v
- Rotation matrix: [[cos(theta),-sin(theta)],[sin(theta),cos(theta)]]
03 Solved Examples
- Apply T(v) = A*v: [[2,0],[0,2]] * (3,4).
- Top: 2*3+0*4=6. Bottom: 0*3+2*4=8.
- Apply T(v)=A*v: [[0,-1],[1,0]] * (1,0).
- Top: 0*1+(-1)*0=0. Bottom: 1*1+0*0=1.
- Matrix multiplication distributes over addition: A*(u+v) = A*u + A*v, which is a basic property of matrix algebra.
- This confirms the additive property holds for any matrix-based transformation.
04 Practice Questions
📄 Linear Transformations — Downloadable Worksheet
10 questions with a full answer key. Grab the PDF to print, or try the interactive version in your browser.