No history yet

Coordinate Vector Mechanics

From Abstract to Concrete

In a vector space like a Hilbert space, vectors are abstract objects. They exist independent of any coordinate system, representing concepts like force, velocity, or even quantum states. To perform calculations, however, we need a way to describe these objects using numbers. This is where a basis comes in.

A basis is an ordered set of linearly independent vectors that spans the entire vector space. Think of it as a set of rulers for measuring everything in that space.

Once we choose a basis, any vector in the space can be written as a unique linear combination of those basis vectors. The coefficients, or weights, of this combination form the vector's numerical representation. This list of numbers is called the coordinate vector.

The Coordinate Map

The process of assigning a coordinate vector to an abstract vector is a formal mapping. For a vector space VV with a basis B={b1,b2,,bn}B = \{\vec{b}_1, \vec{b}_2, \dots, \vec{b}_n\}, we can express any vector vV\vec{v} \in V as:

v=c1b1+c2b2++cnbn\vec{v} = c_1\vec{b}_1 + c_2\vec{b}_2 + \dots + c_n\vec{b}_n

The coordinate vector of v\vec{v} relative to the basis BB is then the column vector of these weights:

[v]B=(c1c2cn)[\vec{v}]_B = \begin{pmatrix} c_1 \\ c_2 \\ \vdots \\ c_n \end{pmatrix}

This mapping is an between the abstract vector space VV and the familiar coordinate space Rn\mathbb{R}^n (or Cn\mathbb{C}^n for complex spaces). It's a perfect one-to-one correspondence that preserves the vector space structure. For any given basis, this representation is unique. Change the basis, and the coordinate vector changes, but the underlying abstract vector v\vec{v} remains exactly the same.

A Change in Perspective

The most common basis is the , which consists of vectors that point along the axes of a Cartesian coordinate system. For R2\mathbb{R}^2, the standard basis is S={e1,e2}S = \{\vec{e}_1, \vec{e}_2\}, where e1=(1,0)\vec{e}_1 = (1, 0) and e2=(0,1)\vec{e}_2 = (0, 1). The convenience here is that a vector's components are identical to its coordinates.

However, we can choose any set of linearly independent vectors as our basis. Let's say we pick a new basis, B={b1,b2}B = \{\vec{b}_1, \vec{b}_2\}. To find the coordinates of our vector v\vec{v} in this new basis, we must find the unique scalars c1c_1 and c2c_2 that satisfy v=c1b1+c2b2\vec{v} = c_1\vec{b}_1 + c_2\vec{b}_2. As the graphic above shows, the coordinate vector changes to reflect the new basis, even though the geometric vector v\vec{v} is stationary.

This ability to change basis is not just an academic exercise. It is a powerful tool in linear algebra. Many problems become much simpler to solve by switching to a basis that is better suited to the problem's geometry or structure, such as an eigenbasis for analyzing linear transformations.

Understanding coordinate vectors bridges the gap between the abstract theory of vector spaces and the concrete calculations of matrix algebra. A vector is a geometric entity; its coordinates are just its shadow projected onto a chosen set of axes.

Quiz Questions 1/5

What is the primary role of a basis in a vector space?

Quiz Questions 2/5

True or False: When you change the basis of a vector space, the underlying abstract vector you are representing also changes.

This fundamental link allows us to use the tools of matrix multiplication to perform complex transformations and change-of-basis calculations, translating abstract vector operations into tangible arithmetic.