32. Coordinate Vector

Given a basis 𝐵={𝑣1,𝑣2,,𝑣𝑛} of a vector space 𝑉, every 𝑥𝑉 has a unique representation as a linear combination of the basis vectors:

𝑥=𝑐1𝑣1+𝑐2𝑣2++𝑐𝑛𝑣𝑛

The coordinate vector of 𝑥 with respect to 𝐵 collects those coefficients:

[𝑥]𝐵=[𝑐1𝑐2𝑐𝑛]

The bracket-subscript notation [𝑥]𝐵 emphasizes that the coordinates depend on the basis.

32.1. The standard basis is implicit

In 𝑛, when we write 𝑥=[315], we tacitly mean coordinates with respect to the standard basis 𝐸={𝑒1,,𝑒𝑛}:

[𝑥]𝐸=[315]

When you change to a different basis, the same vector gets different coordinates.

Example

Let 𝐵={[11],[11]} — a basis of 2.

Express 𝑥=[31] in basis 𝐵. Solve:

𝑐1[11]+𝑐2[11]=[31]𝑐1+𝑐2=3𝑐1𝑐2=1

𝑐1=2, 𝑐2=1. So [𝑥]𝐵=[21], while [𝑥]𝐸=[31].

32.2. Why coordinates matter

Coordinates make abstract vectors computable: once we fix a basis, every vector is a column of numbers and every linear transformation is a matrix.

Different bases reveal different aspects:

32.3. Connection to change of basis

When you switch between two bases 𝐵 and 𝐵, the coordinate vectors are related by an invertible matrix — see Change of Basis.

32.4. See also