Vectors & SpacesTopic #1 of 30

Introduction to Vectors

Vector notation, geometric interpretation, column and row vectors, and basic terminology.

Overview

Vectors are fundamental mathematical objects that represent quantities with both magnitude and direction. They form the building blocks of linear algebra.

Key Concepts

ConceptDescription
VectorAn ordered list of numbers (components)
Column VectorVertical arrangement: entries stacked
Row VectorHorizontal arrangement: entries side by side
ComponentsIndividual entries of a vector
DimensionNumber of components in a vector

Notation

Column Vector

v=[v1v2vn]orv=(v1,v2,,vn)T\mathbf{v} = \begin{bmatrix} v_1 \\ v_2 \\ \vdots \\ v_n \end{bmatrix} \quad \text{or} \quad \mathbf{v} = (v_1, v_2, \ldots, v_n)^T

Row Vector

v=[v1v2vn]\mathbf{v} = \begin{bmatrix} v_1 & v_2 & \cdots & v_n \end{bmatrix}

Geometric Interpretation

In 2D (R2\mathbb{R}^2)

A vector v=[ab]\mathbf{v} = \begin{bmatrix} a \\ b \end{bmatrix} represents:

  • A point at coordinates (a,b)(a, b)
  • An arrow from origin to (a,b)(a, b)
  • A displacement of aa units right and bb units up

In 3D (R3\mathbb{R}^3)

A vector v=[abc]\mathbf{v} = \begin{bmatrix} a \\ b \\ c \end{bmatrix} represents a point or arrow in 3-dimensional space.

Vector Magnitude (Length)

The magnitude or norm of a vector:

v=v12+v22++vn2\|\mathbf{v}\| = \sqrt{v_1^2 + v_2^2 + \cdots + v_n^2}

Examples

For v=[34]\mathbf{v} = \begin{bmatrix} 3 \\ 4 \end{bmatrix}:

v=32+42=9+16=25=5\|\mathbf{v}\| = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5

Unit Vectors

A unit vector has magnitude 1. To find the unit vector in the direction of v\mathbf{v}:

u^=vv\hat{\mathbf{u}} = \frac{\mathbf{v}}{\|\mathbf{v}\|}

Standard Unit Vectors

In R2\mathbb{R}^2:

  • i=[10]\mathbf{i} = \begin{bmatrix} 1 \\ 0 \end{bmatrix} (x-direction)
  • j=[01]\mathbf{j} = \begin{bmatrix} 0 \\ 1 \end{bmatrix} (y-direction)

In R3\mathbb{R}^3:

  • i=[100]\mathbf{i} = \begin{bmatrix} 1 \\ 0 \\ 0 \end{bmatrix}
  • j=[010]\mathbf{j} = \begin{bmatrix} 0 \\ 1 \\ 0 \end{bmatrix}
  • k=[001]\mathbf{k} = \begin{bmatrix} 0 \\ 0 \\ 1 \end{bmatrix}

Zero Vector

The zero vector has all components equal to zero:

0=[000]\mathbf{0} = \begin{bmatrix} 0 \\ 0 \\ \vdots \\ 0 \end{bmatrix}

Properties:

  • 0=0\|\mathbf{0}\| = 0
  • v+0=v\mathbf{v} + \mathbf{0} = \mathbf{v} for any vector v\mathbf{v}