How do you normalize #( - 4 i - 5 j + 2 k )#?
1 Answer
Normalizing a vector means changing it from its current magnitude (length) to a 'unit vector' with a length of 1. This yields
Explanation:
Normalizing a vector - making it into a unit vector - involves dividing each of its components (coefficients) by the length of the vector.
Our first step, then, is to find the length of the vector. This video is very clear in discussing how to find the length of a vector in 3 dimensions:
The length of our vector, then, is:
Two notes here:
-
the length,
#l# , is itself a scalar, not a vector -
you could leave the
answer as#sqrt45# if you like, rather than calculating and rounding. It's a matter of taste that's between you and your marker. ;-)
Now that we know the length, we need to divide each coefficient by it. The new, normalised vector,
Or, if you prefer: