A Vector space is an abstract framework which can be used to define multiple abstract objects as vectors, with constrained operations. A vector space is a set of anything, matrices, functions, or even numbers, as long as it has two operations strictly defined:

  • Vector addition
  • Scalar multiplication

A vector space is defined using a Field. We first define (or fix) a field, , with elements in the field being referred to as scalars. For example, if we want to work with real scalars, we fix .

Definition

Fix a field of scalars, . A vector space over is defined to be a non-empty set, , with two Binary Operations - Vector addition and scalar multiplication:

  • = Set of vectors
  • = Set of scalars, i.e. set used to define the field
  • = Addition defined for vectors:
  • = Multiplication defined with vectors and scalars:

Note that we can let addition and multiplication do whatever we want, as long as it operates and returns on the right sets, and follows the axioms. Then, the must follow the following axioms:

Existence of Bases ^theorem

Let be a vector space. Then:

  • must contain a basis
  • Any set that spans has some subset that is a basis of : $$V_{\mathbb{F}} = \text{span}(S) \iff \text{ contains a basis for }
* Any [linearly independent](Linear%20Dependence.md) set in $V_{\mathbb{F}}$ can be extended to form a basis for $V_{\mathbb{F}}$. #TODO https://thetawise.ai/answers/Every-linearly-independent-subset-of-V-can-be-extended-to-a-basis.

Proof:

#todo One of the properties we take for granted is that the zero vector is the result of scalar multiplying any vector, by the field zero, .

We’ll use the 8 axioms above, along with the 10 field axioms:

We can use F4, where is the additive inverse to

Bad practice

It’s generally bad practice to write this as instead of , however tempting it might be. But I’m not the boss of you.

We can use distributivity of scalar multiplication with respect to field addition to expand:

And use distributivity of scalar multiplication with respect to vector addition backwards:

Resources