Coordinates in C^n
Let's see coordinate vectors in action with some concrete examples in C². Suppose we have a basis B = {3,2ᵀ, −4,1ᵀ} and we want to find the coordinate vector for x = 5,7ᵀ.
To find the coordinates, we need to solve: c₁3,2ᵀ + c₂−4,1ᵀ = 5,7ᵀ
This gives us a system of equations:
- 3c₁ - 4c₂ = 5
- 2c₁ + c₂ = 7
We can solve this by row-reducing the augmented matrix and find that c₁ = 3 and c₂ = 1. Therefore, ρᵦ(x) = 3,1ᵀ.
When working with the standard basis E like[1,0,0]T,[0,1,0]T,[0,0,1]TforC3, finding coordinate vectors becomes much simpler. For any vector x = 2,−1,6ᵀ, its coordinate vector relative to the standard basis is simply ρₑ(x) = x itself! This is because the standard basis vectors each "pick out" exactly one component of your vector.
Remember: The standard basis makes coordinate vectors super easy to find, but other bases require solving systems of equations.