Vectors

Definition

A vector is an element of a Vector Space. While you may be familiar with vectors as "arrows" in R2\mathbb{R}^2 or R3\mathbb{R}^3, the concept is much more general.

Common Examples

  1. Geometric Vectors: Points/arrows in Rn\mathbb{R}^n
v=(v1v2vn)v = \begin{pmatrix} v_1 \\ v_2 \\ \vdots \\ v_n \end{pmatrix}
  1. Polynomials: Elements of polynomial space
p(x)=a0+a1x+a2x2++anxnp(x) = a_0 + a_1x + a_2x^2 + \dots + a_nx^n
  1. Functions: Elements of function spaces
f:RRf: \mathbb{R} \to \mathbb{R}
  1. Matrices: Elements of matrix spaces
A=(a11a12a21a22)A = \begin{pmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \end{pmatrix}

Operations

Vectors can be:

  1. Added together (linearly combined)
  2. Multiplied by scalars
  3. Combined to make spans
  4. Used to generate subspaces

Why So General?

The power of linear algebra comes from treating very different objects (polynomials, functions, matrices) as "vectors". This lets us:

  1. Use the same tools across different areas of math
  2. Find patterns between seemingly unrelated problems
  3. Solve complex problems by breaking them into linear pieces

Think of vectors as the "things" in your vector space that you can add and scale - whatever those "things" might be!

Exercise

Show that the set of all polynomials of degree ≤ 2 forms a vector space. What are the vectors in this space?