Normalized Vector — Definition, Formula & Examples
A normalized vector is the result of dividing a vector by its magnitude, producing a unit vector that points in the same direction but has a length of exactly 1.
Given a nonzero vector , the normalized vector is defined as , where denotes the Euclidean norm (L2 norm) of . The resulting vector satisfies and preserves the direction of .
Key Formula
Where:
- = The original nonzero vector
- = The normalized vector (unit vector in the direction of v)
- = The Euclidean magnitude (L2 norm) of v
- = The components of v
How It Works
To normalize a vector, you first compute its magnitude using the square root of the sum of its squared components. Then you divide each component of the vector by that magnitude. The result is a unit vector — same direction, length 1. Normalized vectors appear whenever you need pure direction without scale: surface normals in 3D graphics, basis vectors in orthonormal sets, and weight directions in machine learning gradient computations all rely on normalization.
Worked Example
Problem: Normalize the vector .
Step 1: Compute the magnitude of v.
Step 2: Divide each component by the magnitude.
Step 3: Verify the result has magnitude 1.
Answer: The normalized vector is .
Another Example
Problem: Normalize the vector .
Step 1: Find the magnitude.
Step 2: Divide each component by 3.
Step 3: Check: the sum of squared components should equal 1.
Answer: The normalized vector is .
Why It Matters
Normalized vectors are essential in linear algebra courses and in any application where direction must be separated from scale. In computer graphics, every lighting calculation uses surface normals that have been normalized. In data science and machine learning, normalizing feature vectors prevents large-magnitude features from dominating distance or gradient calculations.
Common Mistakes
Mistake: Dividing by the sum of the components instead of by the magnitude.
Correction: The magnitude is the square root of the sum of the squared components, not the plain sum. For , divide by , not by .
Mistake: Forgetting to divide every component by the magnitude.
Correction: Each component of the vector must be divided by the same magnitude. Dividing only one component will change the direction of the vector, not just its length.
