The standard basis of Rn (also called the canonical basis or natural basis) is the default coordinate system against which every other vector in Rn is decomposed. It consists of n vectors, each pointing purely along one axis.
Definition
The standard basis of Rn is the set {e1,…,en}, where each unit coordinate vector (also known as a standard unit vector or coordinate unit vector) ei has a 1 in position i and 0 everywhere else:
ei=(0,…,0,i-th slot1,0,…,0)⊤,i∈{1,…,n}
In R3:
e1=100,e2=010,e3=001
In physics and engineering, these three vectors are often written i^,j^,k^ (or x^,y^,z^), where the hat denotes unit length.
Key Properties
For ei,ej in the standard basis of Rn:
Unit length:∥ei∥=1
Mutual orthogonality:⟨ei,ej⟩=δij, where δij is the Kronecker delta (1 if i=j, else 0)
Coordinate expansion: every x=(x1,…,xn)⊤∈Rn decomposes uniquely as
x=∑i=1nxiei,xi=⟨x,ei⟩
The last property is why the standard basis is the default reference frame: any vector is literally the sum of its coordinates times the basis vectors, and each coordinate is recovered by a dot product against the corresponding ei.