A vector of magnitude 1. Often a unit vector is written
using the ^ symbol. For
example, û is
a unit vector pointing in the same direction as vector u.
Key Formula
u^=∥u∥u
Where:
u^ = The unit vector in the direction of vector u
u = The original vector
∥u∥ = The magnitude (length) of vector u
Worked Example
Problem: Find the unit vector in the direction of the vector u = (3, 4).
Step 1: Calculate the magnitude of u.
∥u∥=32+42=9+16=25=5
Step 2: Divide each component of the vector by its magnitude.
u^=5(3,4)=(53,54)=(0.6,0.8)
Step 3: Verify the result has magnitude 1.
0.62+0.82=0.36+0.64=1=1✓
Answer: The unit vector in the direction of (3, 4) is (0.6, 0.8).
Why It Matters
Unit vectors let you separate a vector's direction from its magnitude, which is essential in physics for describing forces, velocities, and other quantities. The standard unit vectors i^, j^, and k^ along the x-, y-, and z-axes form the building blocks for expressing any vector in component form. Normalizing a vector to a unit vector is also a foundational step in computer graphics, machine learning, and engineering.
Common Mistakes
Mistake: Dividing only one component by the magnitude instead of every component.
Correction: You must divide each component of the vector by the same magnitude to preserve the direction.
Related Terms
Vector — A unit vector is a special case of a vector
Magnitude — The length that equals 1 for a unit vector
Normalize — The process of converting a vector to a unit vector
Dot Product — Often computed using unit vectors for angles