Change of Coordinates Matrix — Definition, Formula & Examples
A change of coordinates matrix is a matrix that converts the coordinate representation of a vector in one basis to its coordinate representation in another basis. It tells you how to "translate" between two different coordinate systems for the same vector space.
Let and be two bases for a vector space . The change of coordinates matrix from to , denoted or , is the unique invertible matrix such that for every . Its columns are the -coordinate vectors of each basis vector in .
Key Formula
Where:
- = Coordinate vector of x with respect to basis B
- = Coordinate vector of x with respect to basis C
- = Change of coordinates matrix from C-coordinates to B-coordinates
How It Works
To build the change of coordinates matrix from basis to basis , express each vector in as a linear combination of the vectors in . Place the resulting coordinate vectors as the columns of a matrix. To convert a vector's coordinates from to , multiply this matrix by the -coordinate vector. To go the other direction (from to ), use the inverse of this matrix.
Worked Example
Problem: In R², let the standard basis be B = {e₁, e₂} and let C = {(1, 1), (1, −1)}. Find the change of coordinates matrix from C to B, then convert the vector x with C-coordinates [x]_C = (3, 2) into standard coordinates.
Step 1: Express each basis vector of C in terms of B (the standard basis). Since B is standard, the columns are simply the vectors of C themselves.
Step 2: Multiply the change of coordinates matrix by the C-coordinate vector.
Answer: The standard coordinates of x are (5, 1). This means x = 3(1,1) + 2(1,−1) = (5, 1).
Why It Matters
Change of coordinates matrices are essential in diagonalization, where you convert a matrix into a diagonal form using eigenvector bases. They also appear in computer graphics for switching between world, camera, and screen coordinate systems, and in physics when transforming between reference frames.
Common Mistakes
Mistake: Reversing the direction of the matrix — using P from B to C when you need P from C to B.
Correction: Pay close attention to notation. The columns of P_{B←C} are the C-basis vectors expressed in B-coordinates. If you need the opposite direction, take the inverse.
