5: Vector Spaces
( \newcommand{\kernel}{\mathrm{null}\,}\)
The two key properties of vectors are that they can be added together and multiplied by scalars, so we make the following definition.
Definition
A vector space (V,+,.,R) is a set V with two operations + and ⋅ satisfying the following properties for all u,v∈V and c,d∈R:
- (Additive Closure) u+v∈V. Adding two vectors gives a vector.
- (Additive Commutativity) u+v=v+u. Order of addition doesn't matter.
- (Additive Associativity) (u+v)+w=u+(v+w). Order of adding many vectors doesn't matter.
- (Zero) There is a special vector 0V∈V such that u+0V=u for all u in V.
- (Additive Inverse) For every u∈V there exists w∈V such that u+w=0V.
- (Multiplicative Closure) c⋅v∈V. Scalar times a vector is a vector.
- (Distributivity) (c+d)⋅v=c⋅v+d⋅v. Scalar multiplication distributes over addition of scalars.
- (Distributivity) c⋅(u+v)=c⋅u+c⋅v. Scalar multiplication distributes over addition of vectors.
- (Associativity) (cd)⋅v=c⋅(d⋅v).
- (Unity) 1⋅v=v for all v∈V.
Remark
Rather than writing (V,+,.,R), we will often say "let V be a vector space over R''. If it is obvious that the numbers used are real numbers, then "let V be a vector space'' suffices. Also, don't confuse the scalar product with the dot product. The scalar product is a function that takes as inputs a number and a vector and returns a vector as its output. This can be written:
⋅:R×V→V.
Similarly
+:V×V→V.
On the other hand, the dot product takes two vectors and returns a number. Succinctly: ⋅:V×V→ℜ. Once the properties of a vector space have been verified, we'll just write scalar multiplication with juxtaposition cv=c⋅v, though, to avoid confusing the notation.
- 5.1: Examples of Vector Spaces
- One can find many interesting vector spaces, such as the following:
- 5.2: Other Fields
- Above, we defined vector spaces over the real numbers. One can actually define vector spaces over any field. This is referred to as choosing a different base field. A field is a collection of "numbers'' satisfying certain properties.
Contributor
David Cherney, Tom Denton, and Andrew Waldron (UC Davis)