Mathwords logoMathwords

Standard Basis — Definition, Formula & Examples

The standard basis is the set of unit vectors in Rn\mathbb{R}^n that each point along exactly one coordinate axis. In R3\mathbb{R}^3, these are the familiar vectors e1=(1,0,0)\mathbf{e}_1 = (1,0,0), e2=(0,1,0)\mathbf{e}_2 = (0,1,0), and e3=(0,0,1)\mathbf{e}_3 = (0,0,1).

The standard basis for Rn\mathbb{R}^n is the ordered set {e1,e2,,en}\{\mathbf{e}_1, \mathbf{e}_2, \ldots, \mathbf{e}_n\} where ei\mathbf{e}_i is the vector whose ii-th component is 11 and all other components are 00. These vectors are orthonormal and span Rn\mathbb{R}^n, so every vector vRn\mathbf{v} \in \mathbb{R}^n can be written uniquely as v=v1e1+v2e2++vnen\mathbf{v} = v_1\mathbf{e}_1 + v_2\mathbf{e}_2 + \cdots + v_n\mathbf{e}_n.

Key Formula

ei=(0,,0i1,  1,  0,,0ni)\mathbf{e}_i = (\underbrace{0, \ldots, 0}_{i-1},\; 1,\; \underbrace{0, \ldots, 0}_{n-i})
Where:
  • ei\mathbf{e}_i = The $i$-th standard basis vector in $\mathbb{R}^n$
  • nn = The dimension of the vector space
  • ii = The index of the coordinate axis, from $1$ to $n$

How It Works

Each standard basis vector isolates one coordinate direction. When you write a vector like (3,2,5)(3, -2, 5), you are implicitly expressing it as a linear combination of the standard basis: 3e12e2+5e33\mathbf{e}_1 - 2\mathbf{e}_2 + 5\mathbf{e}_3. The standard basis is not the only basis for Rn\mathbb{R}^n, but it is the default one used when no other basis is specified. Because the standard basis vectors are mutually perpendicular and each have magnitude 11, extracting components is straightforward — the ii-th component of v\mathbf{v} equals vei\mathbf{v} \cdot \mathbf{e}_i.

Worked Example

Problem: Express the vector v=(4,1,7)\mathbf{v} = (4, -1, 7) as a linear combination of the standard basis vectors in R3\mathbb{R}^3.
Identify the standard basis: In R3\mathbb{R}^3, the standard basis vectors are:
e1=(1,0,0),e2=(0,1,0),e3=(0,0,1)\mathbf{e}_1 = (1,0,0),\quad \mathbf{e}_2 = (0,1,0),\quad \mathbf{e}_3 = (0,0,1)
Write the linear combination: Each component of v\mathbf{v} becomes the scalar coefficient of the corresponding basis vector.
v=4e1+(1)e2+7e3\mathbf{v} = 4\,\mathbf{e}_1 + (-1)\,\mathbf{e}_2 + 7\,\mathbf{e}_3
Verify: Multiply and add to confirm the result matches the original vector.
4(1,0,0)+(1)(0,1,0)+7(0,0,1)=(4,1,7)  4(1,0,0) + (-1)(0,1,0) + 7(0,0,1) = (4, -1, 7) \; \checkmark
Answer: v=4e1e2+7e3\mathbf{v} = 4\,\mathbf{e}_1 - \mathbf{e}_2 + 7\,\mathbf{e}_3

Why It Matters

The standard basis provides the default coordinate system in which vectors, matrices, and linear transformations are expressed. When you multiply a matrix by a vector, each column of the matrix is the image of one standard basis vector under that transformation — a fact central to understanding eigenvalues, change of basis, and matrix decomposition.

Common Mistakes

Mistake: Assuming the standard basis is the only basis for Rn\mathbb{R}^n.
Correction: Any set of nn linearly independent vectors in Rn\mathbb{R}^n forms a basis. The standard basis is simply the most convenient default choice.