3. Vector
2026-02-10
Vector (向量)
Definition
A vector is an m×1 matrix (a special matrix that has only one column):
v=v1v2⋮vm
The set of all m-dimensional vectors (vectors that have m components) is denoted by Rm (read “r-m space”).
Specifically, we define 0 as the m-dimensional zero vector:
0=00⋮0
Calculation
The calculation of vectors is defined in the same way as the calculation of matrices.
u+v=u1u2⋮um+v1v2⋮vm=u1+v1u2+v2⋮um+vm
cv=cv1v2⋮vm=cv1cv2⋮cvm
Matrix as a Collection of Column Vectors
A matrix can be viewed as a collection of column vectors:
A=a1,1a2,1⋮am,1a1,2a2,2⋮am,2⋯⋯⋱⋯a1,na2,n⋮am,n=∣a1∣∣a2∣⋯∣an∣ , where aj=a1,ja2,j⋮am,j
Specifically, we define e1,e2,…,en as the column vectors of In:
In=10⋮001⋮0⋯⋯⋱⋯00⋮1n×n=∣e1∣∣e2∣⋯∣en∣
Linear Combinations and Span
A linear combination (线性组合) of vectors v1,v2,…,vk with scalars c1,c2,…,ck∈R is defined as:
c1v1+c2v2+…+ckvk
The span (张成空间) of v1,v2,…,vk, or the subset of Rn spanned by v1,v2,…,vk, is the collection of all linear combinations of these vectors, which can be expressed as:
Span{v1,v2,…,vk}={c1v1+c2v2+…+ckvk∣c1,c2,…,ck∈R}
Linear Independence (线性无关)
A set of vectors v1,v2,…,vk is said to be linearly independent (线性无关) if the linear equition c1v1+c2v2+…+ckvk=0 has only the trivial solution c1=c2=…=ck=0.
Otherwise, if there exists a nontrivial solution (at least one of c1,c2,…,ck is not zero), then the vectors are said to be linearly dependent (线性相关).
According to the definition, we can conclude the following statements:
- If v1,v2,…,vk are linearly independent, then no vector in the set can be written as a linear combination of the other vectors.
- If a set of vectors contains 0, then the vectors are linearly dependent.
- If a set contains more vectors than there are entries in each vector, then the vectors are linearly dependent.
To determine whether a set of vectors v1,v2,…,vk is linearly independent, we can write the following matrix:
A=∣v1∣∣v2∣⋯∣vk∣
The vectors v1,v2,…,vk are linearly independent if and only if A has pivot positions in every column.