Overview
A linear transformation is a function between vector spaces that preserves vector addition and scalar multiplication. Linear transformations are the functions that "play well" with linear algebra.
Definition
A function T:V→W is a linear transformation if for all u,v∈V and scalar c:
- Additivity: T(u+v)=T(u)+T(v)
- Homogeneity: T(cv)=cT(v)
Equivalently (combined):
T(cu+dv)=cT(u)+dT(v)
Basic Examples
Scaling
T(v)=kv for scalar k
T[xy]=k[xy]=[kxky]
Rotation (2D)
Rotate by angle θ:
T[xy]=[xcosθ−ysinθxsinθ+ycosθ]
Projection
Project onto x-axis:
T[xy]=[x0]
Reflection
Reflect across x-axis:
T[xy]=[x−y]
Verifying Linearity
To prove T is linear, verify both conditions:
Example
T(x,y)=(2x+y,x−y)
Check additivity:
T(u+v)=T(x1+x2,y1+y2)=(2(x1+x2)+(y1+y2),(x1+x2)−(y1+y2))
=(2x1+y1,x1−y1)+(2x2+y2,x2−y2)=T(u)+T(v)✓
T(cv)=T(cx,cy)=(2cx+cy,cx−cy)=c(2x+y,x−y)=cT(v)✓
T is linear.
Non-Linear Examples
These are NOT linear transformations:
- T(x)=x+1 (translation)
- T(x,y)=xy (multiplication)
- T(x)=x2 (squaring)
- T(x)=∣x∣ (absolute value)
Why Not Linear
T(x)=x+1:
T(0)=1=0
But linear transformations must satisfy T(0)=0
Properties of Linear Transformations
| Property | Formula |
|---|
| Zero maps to zero | T(0)=0 |
| Negation | T(−v)=−T(v) |
| Linear combination | T(∑civi)=∑ciT(vi) |
Standard Linear Transformations
Zero Transformation
T(v)=0 for all v
Identity Transformation
T(v)=v for all v
Differentiation
D:Pn→Pn−1
D(p(x))=p′(x)
Integration
∫:Pn→Pn+1
∫(p(x))=∫p(x)dx
Composition
If S and T are linear, so is S∘T:
(S∘T)(v)=S(T(v))
Inverse
If T is invertible (bijective), T−1 is also linear:
T−1(T(v))=v
Connection to Matrices
Every linear transformation T:Rn→Rm can be represented by an m×n matrix A:
T(v)=Av
This is the fundamental link between transformations and matrices.