Vectors & SpacesTopic #3 of 30

Vector Spaces

Definition of vector spaces, axioms, examples including Rⁿ, and closure properties.

Overview

A vector space is a set VV with two operations (addition and scalar multiplication) that satisfy specific axioms. Vector spaces generalize the properties of Rn\mathbb{R}^n.

Definition

A vector space over a field FF (usually R\mathbb{R}) is a set VV with:

  • Addition: V×VVV \times V \to V
  • Scalar multiplication: F×VVF \times V \to V

Vector Space Axioms

AxiomProperty
A1u+v=v+u\mathbf{u} + \mathbf{v} = \mathbf{v} + \mathbf{u} (commutativity)
A2(u+v)+w=u+(v+w)(\mathbf{u} + \mathbf{v}) + \mathbf{w} = \mathbf{u} + (\mathbf{v} + \mathbf{w}) (associativity)
A30V:v+0=v\exists \mathbf{0} \in V: \mathbf{v} + \mathbf{0} = \mathbf{v} (identity)
A4vV:v+(v)=0\exists -\mathbf{v} \in V: \mathbf{v} + (-\mathbf{v}) = \mathbf{0} (inverse)
S1c(u+v)=cu+cvc(\mathbf{u} + \mathbf{v}) = c\mathbf{u} + c\mathbf{v}
S2(c+d)v=cv+dv(c + d)\mathbf{v} = c\mathbf{v} + d\mathbf{v}
S3c(dv)=(cd)vc(d\mathbf{v}) = (cd)\mathbf{v}
S41v=v1\mathbf{v} = \mathbf{v}

Common Examples

Rn\mathbb{R}^n - n-dimensional Real Space

The set of all n-tuples of real numbers:

Rn={(x1,x2,,xn):xiR}\mathbb{R}^n = \{(x_1, x_2, \ldots, x_n) : x_i \in \mathbb{R}\}

Polynomials PnP_n

The set of polynomials of degree n\leq n:

Pn={a0+a1x+a2x2++anxn:aiR}P_n = \{a_0 + a_1 x + a_2 x^2 + \cdots + a_n x^n : a_i \in \mathbb{R}\}

Matrices Mm×nM_{m \times n}

The set of m×nm \times n matrices with real entries.

Functions

The set of continuous functions on an interval.

Closure Properties

A vector space must be closed under:

Addition Closure

If u,vV\mathbf{u}, \mathbf{v} \in V, then u+vV\mathbf{u} + \mathbf{v} \in V

Scalar Multiplication Closure

If vV\mathbf{v} \in V and cFc \in F, then cvVc\mathbf{v} \in V

Verifying a Vector Space

To verify VV is a vector space:

  1. Check closure under addition
  2. Check closure under scalar multiplication
  3. Verify all 8 axioms hold

Example: Verification

Verify R2\mathbb{R}^2 is a vector space

Let u=(u1,u2)\mathbf{u} = (u_1, u_2), v=(v1,v2)R2\mathbf{v} = (v_1, v_2) \in \mathbb{R}^2, c,dRc, d \in \mathbb{R}

  1. Closure (addition): u+v=(u1+v1,u2+v2)R2\mathbf{u} + \mathbf{v} = (u_1 + v_1, u_2 + v_2) \in \mathbb{R}^2
  2. Closure (scalar): cu=(cu1,cu2)R2c\mathbf{u} = (cu_1, cu_2) \in \mathbb{R}^2
  3. Identity: 0=(0,0)\mathbf{0} = (0, 0) satisfies u+0=u\mathbf{u} + \mathbf{0} = \mathbf{u}
  4. Inverse: u=(u1,u2)-\mathbf{u} = (-u_1, -u_2) satisfies u+(u)=0\mathbf{u} + (-\mathbf{u}) = \mathbf{0}
  5. All axioms hold by properties of real numbers ✓

Non-Examples

The following are NOT vector spaces:

  • Positive real numbers under usual addition (no additive inverse)
  • Polynomials of exactly degree nn (not closed under addition)
  • The set {0,1}\{0, 1\} under usual addition (1+1=2{0,1}1 + 1 = 2 \notin \{0, 1\})

Properties of Vector Spaces

For any vector space VV:

  • 0v=00\mathbf{v} = \mathbf{0} for any vV\mathbf{v} \in V
  • c0=0c\mathbf{0} = \mathbf{0} for any scalar cc
  • (1)v=v(-1)\mathbf{v} = -\mathbf{v}
  • If cv=0c\mathbf{v} = \mathbf{0}, then c=0c = 0 or v=0\mathbf{v} = \mathbf{0}