Introduction to Vector Spaces & Basis
What is a Vector Space?
A vector space (also called a linear space) is a collection of vectors, which can be added together and multiplied (“scaled”) by numbers (called scalars in this context). Scalars are usually real numbers, but they can also be complex numbers or elements of other fields. Vector spaces are fundamental in linear algebra and are used to model various physical and abstract systems.
A set V is called a vector space over a field F (e.g., the field of real numbers R if it satisfies the following conditions:
-
Vector Addition: For any vectors u,v∈V, their sum u+v is also in V.
-
Scalar Multiplication: For any vector v∈V and scalar c∈F, the product cv is also in V.
-
Commutativity: u+v=v+u for all u,v∈V.
-
Associativity of Addition: (u+v)+w=u+(v+w) for all u,v,w∈V.
-
Associativity of Scalar Multiplication: a(bv)=(ab)v for all a,b∈F and v∈V.
-
Distributivity of Scalar Multiplication:
- a(u+v)=au+av for all a∈F and u,v∈V.
- (a+b)v=av+bv for all a,b∈F and v∈V.
-
Existence of Additive Identity: There exists a vector 0∈V such that v+0=v for all v∈V.
-
Existence of Additive Inverses: For every v∈V, there exists a vector −v∈V such that v+(−v)=0.
Examples of Vector Spaces:
- Euclidean Space: The set of all n-tuples of real numbers Rn is a vector space.
- Polynomial Space: The set of all polynomials of a certain degree is a vector space.
- Function Space: The set of all continuous functions on a given interval is a vector space.
What is a Subspace?
A subspace is a subset of a vector space that is also a vector space under the same addition and scalar multiplication as the original space. For a subset W⊂V to be a subspace, it must satisfy three conditions:
- Non-empty: W contains the zero vector 0.
- Closed under Addition: For any u,v∈W, the sum u+v is also in W.
- Closed under Scalar Multiplication: For any v∈W and scalar c, the product cv is in W.
Basis Vectors:
A basis of a vector space V is a set of vectors that are linearly independent and span the entire vector space.
- Spanning: A set of vectors {v1,v2,…,vn} spans V if every vector in V can be written as a linear combination of these vectors.
- Linear Independence: The vectors {v1,v2,…,vn} are linearly independent if the only solution to the equation:
[
c_1\mathbf{v}_1 + c_2\mathbf{v}_2 + \dots + c_n\mathbf{v}_n = \mathbf{0}
]
is c1=c2=⋯=cn=0.
If a vector space V has a basis of n vectors, then every vector in V can be uniquely expressed as a linear combination of these basis vectors. The number n is called the dimension of the vector space.
Significance of Basis:
- Coordinate Systems: A basis allows for the representation of vectors in terms of coordinates relative to that basis.
- Dimensionality: The number of vectors in the basis of a vector space determines its dimension.
- Change of Basis: The concept of a basis is crucial when changing from one coordinate system to another, which is common in various applications like computer graphics and physics.
Examples of Basis:
- Standard Basis in Rn: The standard basis in Rn is the set of vectors {e1,e2,…,en}, where ei is the vector with 1 in the ith position and 0 elsewhere.
- Polynomial Basis: For the space of polynomials of degree at most 2, {1,x,x2} forms a basis.
Applications:
- Linear Transformations: Understanding vector spaces and basis vectors is essential for defining and analyzing linear transformations.
- Quantum Mechanics: In quantum mechanics, the state of a system is represented as a vector in a vector space, and the basis vectors represent possible states of the system.
- Differential Equations: Solutions to linear differential equations often form a vector space, and finding a basis for the solution space is a key task.