The following are examples of Vector Spaces

Zero vector space

The set is the simplest vector space if addition and multiplication are defined as normal.

In this space, it doesn’t matter what field we fix it over, as the axioms will always hold true.

#todo Show that all the axioms are satisfied, as is the additive inverse of itself.

Vector space of

The real vector space is defined with both the scalars being . Let be the set of all real vectors with dimensions. E.g. is the set of all two dimensional real Vectors fixed over the field .

Vector space of Matrices

Matrices can also be defined as a vector space.

Let be the set of all matrices of size which has all entries being elements of the set For example, is the set of all matrices which have real entries (entries in )

is a vector space when addition is defined to be the sum of entries, and multiplication is defined to be Matrix Multiplication:

Vector space of Polynomials

Let be the set of all polynomials with degree (where ) having coefficients being elements of set .

is a vector space when fixed over the

Warning is DIFFERENT FROM

Sometimes, you’ll see being used to define the set of polynomials with degree equal to . This is not a vector space, because you can take and , which both are valid -degree polynomials. Subtracting (adding the inverse of) from yields:

Vector space of Functions

Let be the set of all functions that map from to , where is a non-empty set. $$\vec{f}: S_{1} \to S_{2} \iff \vec{f} \in \mathcal{F(S_{1},S_{2})}

Let $\vec{f}, \vec{g} \in \mathcal{F}(S,\mathbb{R})$ i.e. $\vec{f}$ and $\vec{g}$ are two functions that map elements from $S$ to the real numbers. Fix $\mathcal{F}$ over the [Field](field.md) $\mathbb{R}$ and define vector addition and scalar multiplication as follows: #TODO

(\vec{f} + \vec{g})(x) =

### Vector space of $\mathbb{F}_{2}^n$ The set $\mathbb{F}^n_{2}$ is all the vectors of dimensions $n$ which has components in the finite field of two elements, $\mathbb{F}_{2}$. That is,

\vec{v} \in \mathbb{F}{2}^n \iff \vec{v} = (a{1}, a_{2}, \dots a_{n})| a_{1}, a_{2},\dots a_{n}\in \mathbb{F}_{2}

#TODO This vector space has useful applications in computer science, such as in [Hamming Codes](Hamming%20Codes) ### Vector space of $\mathbb{C}^n$ Also called the complex vector space, this is a vector space with field fixed over the complex numbers, i.e. $\mathbb{F} = \mathbb{C}$

\vec{v} \in \mathbb{C}^n \iff \vec{v} = (a_{1},a_{2},a_3\dots a_{n})| a_{1},a_{2},a_{3},\dots a_{n} \in \mathbb{C}$$
The normal Complex Numbers belong to the vector space

All the vector spaces above can be expressed as a complex vector space:

Real Vector SpaceComplex Vector Space
* Assuming that both vector spaces are fixed over their respective fields i.e. Real vector spaces are fixed over the field and complex vector spaces are fixed over the field.