Andromeda
Note

Vector Projections

Definition

A vector projection is the decomposition of one vector u\mathbf{u} into a component that is parallel to another vector v\mathbf{v}. It represents the “shadow” or effective influence of u\mathbf{u} in the direction of v\mathbf{v}.

Why It Matters

In any system with multiple forces, we only care about the component that acts in our direction of interest. Projection is the tool that extracts “effective power” from “total power,” allowing us to calculate work and resolve conflicts efficiently.

Core Concepts

  • Vector Projection: The result is a vector in the direction of v\mathbf{v}: projvu=(uvv2)v\text{proj}_{\mathbf{v}} \mathbf{u} = \left( \frac{\mathbf{u} \cdot \mathbf{v}}{|\mathbf{v}|^2} \right) \mathbf{v}.
    • How to read: “Projection of u onto v equals (u dot v over magnitude of v squared) times v.”
    • Meaning: The component of u\mathbf{u} lying along v\mathbf{v}; use for work (Fd\mathbf{F} \cdot \mathbf{d}) and force resolution.
  • Scalar Component: The signed length of the projection, compvu=uvv\text{comp}_{\mathbf{v}} \mathbf{u} = \frac{\mathbf{u} \cdot \mathbf{v}}{|\mathbf{v}|}.
    • How to read: “Scalar component of u on v equals u dot v over magnitude of v.”
    • Meaning: Signed length of the shadow; positive if u\mathbf{u} and v\mathbf{v} point roughly the same way.
  • Relationship: The vector projection is the scalar component multiplied by the unit vector of v\mathbf{v}: projvu=(compvu)vv\text{proj}_{\mathbf{v}} \mathbf{u} = (\text{comp}_{\mathbf{v}} \mathbf{u}) \frac{\mathbf{v}}{|\mathbf{v}|}.
    • How to read: “Projection equals scalar component times v over magnitude of v.”
    • Meaning: Scalar length times unit direction gives the full projection vector.

Connected Concepts