Representing transformations as matrices, standard matrix, and change of basis.
Overview
Every linear transformation between finite-dimensional vector spaces can be represented by a matrix. This correspondence is fundamental to linear algebra and connects abstract transformations to concrete calculations.
The Standard Matrix
For T:Rn→Rm, the standard matrix A satisfies:
T(x)=Axfor all x∈Rn
Finding the Standard Matrix
The columns of A are the images of the standard basis vectors:
A=[T(e1)T(e2)⋯T(en)]
where ei=[0,…,1,…,0]T (1 in position i).
Example: Finding Standard Matrix
T:R2→R2 defined by T(x,y)=(2x+y,x−3y)
T(e1)=T(1,0)=(2,1)T(e2)=T(0,1)=(1,−3)
A=[211−3]
Verify: T(x,y)=[211−3][xy]=(2x+y,x−3y) ✓
Common Transformation Matrices
Rotation (2D) by θ
Rθ=[cosθsinθ−sinθcosθ]
Scaling
S=[sx00sy]
Reflection Across x-axis
M=[100−1]
Reflection Across y-axis
M=[−1001]
Projection onto x-axis
P=[1000]
Shear
Horizontal shear:
[10k1]
Change of Basis
If B={b1,b2,…,bn} is a basis for V, the matrix representation changes.
Coordinate Vector
For v∈V with v=c1b1+c2b2+⋯+cnbn:
[v]B=c1c2⋮cn
Change of Basis Matrix
From basis B to standard basis:
P=[b1b2⋯bn]
Then:
v=P[v]B
[v]B=P−1v
Transformation in Different Basis
If T has matrix A in standard basis and B is another basis:
[T]B=P−1AP
Example: Change of Basis
B={[11],[1−1]} is a basis for R2
P=[111−1]
P−1=21[111−1]
For T with standard matrix A=[2011]:
[T]B=P−1AP=21[111−1][2011][111−1]
Similarity
Matrices A and B are similar if:
B=P−1APfor some invertible P
Similar matrices:
Represent the same transformation in different bases