Andromeda
Note

Vectors in Space

Definition

A vector in space is a mathematical object characterized by both a magnitude (length) and a direction. Geometrically, it is represented by a directed line segment from an initial point to a terminal point.

Why It Matters

We live in a 3D world. 3D vectors are the only way to accurately model the “reality” of flight, construction, and satellite orbits. Failure to think in 3D vectors leads to “flatland” errors where the Z-axis (altitude or depth) is tragically ignored.

Core Concepts

  • Component Form: A vector v\mathbf{v} with terminal point (v1,v2,v3)(v_1, v_2, v_3) when the initial point is at the origin is written as v=v1,v2,v3\mathbf{v} = \langle v_1, v_2, v_3 \rangle.
    • How to read: “The vector v equals the vector with components v one, v two, and v three.”
    • Meaning: Standard 3D component notation when the vector starts at the origin.
  • Vector Between Points: For P1(x1,y1,z1)P_1(x_1, y_1, z_1) and P2(x2,y2,z2)P_2(x_2, y_2, z_2), the vector P1P2=x2x1,y2y1,z2z1\vec{P_1P_2} = \langle x_2-x_1, y_2-y_1, z_2-z_1 \rangle.
    • How to read: “The vector from P one to P two equals the vector with components x two minus x one, y two minus y one, and z two minus z one.”
    • Meaning: Terminal minus initial coordinates; displacement from P1P_1 to P2P_2.
  • Zero Vector: 0=0,0,0\mathbf{0} = \langle 0, 0, 0 \rangle, the only vector with no specific direction and zero magnitude.
    • How to read: “The zero vector has components zero, zero, zero.”
    • Meaning: Additive identity; no displacement.
  • Position Vector: A vector whose initial point is the origin.

Connected Concepts