Andromeda
Note

Vector Algebra

Definition

Vector algebra is the system of rules for performing operations on vectors, including addition, subtraction, and scalar multiplication. These operations allow for the algebraic manipulation of physical quantities that have direction.

Why It Matters

Forces in the real world don’t just “add up” numerically; they combine geometrically. Without vector algebra, you cannot calculate the true impact of multiple influences (like wind on a plane), leading to navigation errors and structural failure.

Core Concepts

  • Magnitude: The length of v=v1,v2,v3\mathbf{v} = \langle v_1, v_2, v_3 \rangle is v=v12+v22+v32|\mathbf{v}| = \sqrt{v_1^2 + v_2^2 + v_3^2}.
    • How to read: “The magnitude of v equals the square root of v one squared plus v two squared plus v three squared.”
    • Meaning: Euclidean length from the origin to (v1,v2,v3)(v_1, v_2, v_3); generalizes the Pythagorean theorem to 3D.
  • Addition: u+v=u1+v1,u2+v2,u3+v3\mathbf{u} + \mathbf{v} = \langle u_1+v_1, u_2+v_2, u_3+v_3 \rangle. Geometrically, this follows the Parallelogram Law or Head-to-Tail Rule.
    • How to read: “The vector u plus v equals the vector with components u one plus v one, u two plus v two, and u three plus v three.”
    • Meaning: Component-wise sum; geometrically combines displacements tip-to-tail.
  • Scalar Multiplication: ku=ku1,ku2,ku3k\mathbf{u} = \langle ku_1, ku_2, ku_3 \rangle. This scales the magnitude and reverses direction if k<0k < 0.
    • How to read: “The scalar k times vector u equals the vector with components k times u one, k times u two, and k times u three.”
    • Meaning: Stretches or flips the vector; ku=ku|k\mathbf{u}| = |k| \cdot |\mathbf{u}|.
  • Algebraic Properties: Vector addition is commutative and associative; scalar multiplication is distributive.

Connected Concepts