No history yet

Introduction to Vector Spaces

The Rules of the Game

So far, we've talked about vectors as arrows with a specific length and direction. This is a great starting point, but it's just one example of what a vector can be. To unlock the full power of linear algebra, we need a more general, abstract definition. This brings us to the idea of a vector space.

A vector space is essentially a collection of objects (which we call vectors) that follow a specific set of rules for addition and scalar multiplication.

Think of it like a playground with two fundamental activities: combining things and stretching or shrinking things. As long as the objects in our collection, and the rules for combining and scaling them, obey a certain list of axioms, we can call it a vector space. This abstraction is powerful because it allows us to apply the tools of linear algebra to many different kinds of problems, not just those involving geometric arrows.

The Core Operations

Every vector space is defined by two basic operations: vector addition and scalar multiplication.

Vector Addition

noun

A rule for combining any two vectors to produce another vector. If uu and vv are vectors in the space, their sum u+vu + v must also be in the space.

This property is called closure under addition. It guarantees that when you add two things from your collection, you don't end up with something outside of it. It’s like adding two whole numbers and always getting another whole number.

Scalar Multiplication

noun

A rule for combining a scalar (a real number) and a vector to produce another vector. If cc is a scalar and vv is a vector, their product cvcv must also be in the space.

This is closure under scalar multiplication. It ensures that scaling a vector keeps it within the same vector space. If you stretch or shrink a vector, it stays in the same family.

The Eight Axioms

For a collection of vectors and these two operations to officially form a vector space, they must satisfy eight fundamental rules, or axioms. These axioms ensure that vectors behave in a consistent, predictable way, much like the rules of arithmetic do for numbers. Let's use uu, vv, and ww to represent any vectors in the space, and cc and dd for any scalars.

1. Associativity of addition: When adding three vectors, it doesn't matter how you group them.

(u+v)+w=u+(v+w)(u + v) + w = u + (v + w)

2. Commutativity of addition: The order in which you add two vectors doesn't matter.

u+v=v+uu + v = v + u

3. Additive identity: The space must contain a special zero vector, denoted 00, such that adding it to any vector leaves that vector unchanged.

v+0=vv + 0 = v

4. Additive inverse: For every vector vv, there is another vector, v-v, such that adding them together results in the zero vector.

v+(v)=0v + (-v) = 0

5. Distributivity over vector addition: Multiplying a scalar by the sum of two vectors is the same as multiplying the scalar by each vector first and then adding the results.

c(u+v)=cu+cvc(u + v) = cu + cv

6. Distributivity over scalar addition: Multiplying a vector by the sum of two scalars is the same as multiplying the vector by each scalar and then adding.

(c+d)v=cv+dv(c + d)v = cv + dv

7. Compatibility of scalar multiplication: Multiplying a vector by one scalar, and then multiplying the result by another scalar, is the same as multiplying the scalars together first.

c(dv)=(cd)vc(dv) = (cd)v

8. Multiplicative identity: The space must have an identity element for scalar multiplication, which is just the number 1. Multiplying any vector by 1 leaves it unchanged.

1v=v1v = v

These axioms might seem a bit formal, but they are the bedrock of linear algebra. They provide a solid framework that allows us to reason about vectors and their interactions in a very general way. Any set that satisfies these conditions, from arrows in a plane to polynomials or functions, can be treated as a vector space and analyzed with the same powerful techniques.