1: Vector definition and operations | Course - StudyGenius | StudyGenius

Course Progress

Victories 0/46
Finished 0/46

StudyGenius Logo

1: Vector definition and operations

Choose your name

Harper Martinez

Your opponent is:

Harper Martinez

1,263 pts

3 days ago

Choose your name

Harper Martinez

Your opponent is

Harper Martinez

1,263 pts
3 days ago
The quiz will be on the following text — learn it for the best chance to win.

Section 1: Vector Definition and Operations

Vectors are fundamental objects in linear algebra, representing quantities possessing both magnitude and direction. In an algebraic context, a vector in Rn\mathbb{R}^n (nn-dimensional real space) is defined as an ordered list of nn real numbers, called its components or coordinates. We typically denote a vector as a column:

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

or equivalently as a row: v=[v1,v2,,vn]T\mathbf{v} = [v_1, v_2, \dots, v_n]^T. The integer nn is the dimension of the vector. Geometrically in 2D (R2\mathbb{R}^2) or 3D (R3\mathbb{R}^3), a vector is visualized as an arrow from the origin (0,0)(0,0) or (0,0,0)(0,0,0) to the point (v1,v2)(v_1, v_2) or (v1,v2,v3)(v_1, v_2, v_3). This arrow representation captures direction (the orientation) and magnitude (the length).

Core Vector Operations
  1. Vector Addition:
    Given vectors u=[u1,u2,,un]T\mathbf{u} = [u_1, u_2, \dots, u_n]^T and v=[v1,v2,,vn]T\mathbf{v} = [v_1, v_2, \dots, v_n]^T of the same dimension, their sum u+v\mathbf{u} + \mathbf{v} is computed component-wise:

    u+v=[u1+v1u2+v2un+vn]\mathbf{u} + \mathbf{v} = \begin{bmatrix} u_1 + v_1 \\ u_2 + v_2 \\ \vdots \\ u_n + v_n \end{bmatrix}

    Geometrically, this corresponds to placing the tail of v\mathbf{v} at the head of u\mathbf{u} and drawing the arrow from the tail of u\mathbf{u} to the head of v\mathbf{v} (the parallelogram rule).

  2. Scalar Multiplication:
    Given a vector v=[v1,v2,,vn]T\mathbf{v} = [v_1, v_2, \dots, v_n]^T and a real number cc (a scalar), the product cvc\mathbf{v} is:

    cv=[cv1cv2cvn]c\mathbf{v} = \begin{bmatrix} c v_1 \\ c v_2 \\ \vdots \\ c v_n \end{bmatrix}

    Geometrically, this scales the vector's length by c|c| and reverses its direction if c<0c < 0.

  3. Vector Subtraction:
    Subtraction is defined using addition and scalar multiplication: uv=u+(1)v\mathbf{u} - \mathbf{v} = \mathbf{u} + (-1)\mathbf{v}. Component-wise:

    uv=[u1v1u2v2unvn]\mathbf{u} - \mathbf{v} = \begin{bmatrix} u_1 - v_1 \\ u_2 - v_2 \\ \vdots \\ u_n - v_n \end{bmatrix}

    Geometrically, uv\mathbf{u} - \mathbf{v} points from the head of v\mathbf{v} to the head of u\mathbf{u} when both tails are placed at the origin.

Essential Properties

These operations satisfy key algebraic properties for any vectors u,v,w\mathbf{u}, \mathbf{v}, \mathbf{w} in Rn\mathbb{R}^n and scalars c,dc, d:

  • Commutativity of Addition: u+v=v+u\mathbf{u} + \mathbf{v} = \mathbf{v} + \mathbf{u}
  • Associativity of Addition: (u+v)+w=u+(v+w)(\mathbf{u} + \mathbf{v}) + \mathbf{w} = \mathbf{u} + (\mathbf{v} + \mathbf{w})
  • Additive Identity: The zero vector 0=[0,0,,0]T\mathbf{0} = [0, 0, \dots, 0]^T satisfies v+0=v\mathbf{v} + \mathbf{0} = \mathbf{v}
  • Additive Inverse: For every v\mathbf{v}, there exists v=(1)v-\mathbf{v} = (-1)\mathbf{v} such that v+(v)=0\mathbf{v} + (-\mathbf{v}) = \mathbf{0}
  • Distributive Laws:
    c(u+v)=cu+cvc(\mathbf{u} + \mathbf{v}) = c\mathbf{u} + c\mathbf{v}
    (c+d)v=cv+dv(c + d)\mathbf{v} = c\mathbf{v} + d\mathbf{v}
  • Scalar Multiplication Associativity: c(dv)=(cd)vc(d\mathbf{v}) = (cd)\mathbf{v}
  • Scalar Identity: 1v=v1 \cdot \mathbf{v} = \mathbf{v}