Andromeda
Note

Unit Vectors

Definition

A unit vector is a vector whose magnitude (length) is exactly 1. They are used to represent direction independently of magnitude.

Why It Matters

Unit vectors provide a standardized ‘direction unit.’ By normalizing vectors to length 1, we can isolate and manipulate direction independently of magnitude, forming the fundamental building blocks for all vector algebra and physical modeling.

Core Concepts

  • Standard Basis Vectors: The unit vectors aligned with the axes: i=1,0,0\mathbf{i} = \langle 1, 0, 0 \rangle, j=0,1,0\mathbf{j} = \langle 0, 1, 0 \rangle, k=0,0,1\mathbf{k} = \langle 0, 0, 1 \rangle.
    • How to read: “The unit vector i has components one, zero, zero; the unit vector j has components zero, one, zero; and the unit vector k has components zero, zero, one.”
    • Meaning: Orthonormal directions along xx, yy, and zz; every 3D vector is a linear combination of these.
  • Linear Combination Form: Any vector can be written as v=v1i+v2j+v3k\mathbf{v} = v_1\mathbf{i} + v_2\mathbf{j} + v_3\mathbf{k}.
    • How to read: “v equals v-one i plus v-two j plus v-three k.”
    • Meaning: Component decomposition; v1,v2,v3v_1, v_2, v_3 are the projections onto each axis direction.
  • Normalizing a Vector: To find the unit vector u\mathbf{u} in the direction of v\mathbf{v}, divide v\mathbf{v} by its magnitude: u=vv\mathbf{u} = \frac{\mathbf{v}}{|\mathbf{v}|}.
    • How to read: “u equals v divided by the magnitude of v.”
    • Meaning: Scale v\mathbf{v} so its length becomes 1 while preserving direction.
  • Direction: If u\mathbf{u} is a unit vector, it points in a specific direction without “weighing” the result with its own length.

Connected Concepts