0:00 / 0:00

Unit Vectors

A unit vector is a vector that has length one.

Using the notion of norm, we say v\vec v is a unit vector if and only if v=1\|\vec{v}\|= 1.

How to Find a Unit Vector

The unit vector in the same direction as a given vector v\vec{v} is given by:
1vv\boxed{\quad \dfrac{1}{\lVert \vec{v}\rVert}\vec{v} \quad}
Steps
  1. Find the length v\lVert \vec{v} \rVert
  2. Multiply v\vec v by the scalar 1v\dfrac{1}{\lVert\vec{v}\rVert}(divide by its length) to obtain 1vv\dfrac{1}{\lVert \vec{v}\rVert}\vec{v}
*This is sometimes called normalizing a vector.
Example 1
Find the unit vector in the same direction as the vector v=3,4\vec v = \lang -3, -4 \rang.

v=(3)2+(4)2=9+16=25=5\lVert \vec v \rVert = \sqrt{(-3)^2 + (-4)^2} = \sqrt{9+16} = \sqrt{25} = 5
The unit vector in the same direction as v\vec v is therefore:
1vv  =  153,4  =  35,45\dfrac{1}{\lVert \vec v \rVert} \vec v \ \ = \ \ \dfrac{1}{5} \lang -3, -4 \rang \ \ = \ \ \boxed{\left\lang -\dfrac{3}{5}, -\dfrac{4}{5} \right\rang}
PAGE BREAK

Standard Basis Vectors

Standard basis vectors are unit vectors that run along each axis (positive side only).

In R2\reals^2:
  • i^=1, 0\hat{i}=\lang 1,\ 0\rang runs along the positive xx-axis
  • j^=0, 1\hat{j}=\lang 0,\ 1\rang runs along the positive yy-axis


In R3\reals^3:
  • i^=1, 0, 0\hat{i}=\lang 1,\ 0,\ 0\rang runs along the positive xx-axis
  • j^=0, 1, 0\hat{j}=\lang 0,\ 1,\ 0\rang runs along the positive yy-axis
  • k^=0, 0, 1\hat{k}=\lang 0,\ 0,\ 1\rang runs along the positive zz-axis
PAGE BREAK

Decomposing Vectors with Unit Vectors

When plotting a point on a graph, we usually count along each axis one at a time. We are adding multiples of unit vectors!

Example 2

v=3,1,2\vec{v}=\lang 3,−1,2 \rang ==
3
i^\hat i +
-1
j^\hat j +
2
k^\hat k
This is another notation for writing vectors!
Try writing out this expression with column vectors:
v=[312]=  3[100]  +  (1)[010]  +  2[001]\vec{v} = \begin{bmatrix} 3\\ -1\\ 2 \end{bmatrix} = \ \ 3 \begin{bmatrix} 1\\ 0\\ 0 \end{bmatrix} \ \ + \ \ (-1) \begin{bmatrix} 0\\ 1\\ 0 \end{bmatrix} \ \ + \ \ 2 \begin{bmatrix} 0\\ 0\\ 1 \end{bmatrix}
0:00 / 0:00

Example: Unit Vectors

Part A)

Find the unit vector in the same direction as v=1,2,2\vec v = \lang 1,2,-2 \rang.
First calculate v\lVert\vec{v}\rVert:
v=12+(2)2+(2)2=9=3\lVert\vec{v}\rVert = \sqrt{1^2 + (2)^2 + (-2)^2} = \sqrt{9} = 3
Then the unit vector in the same direction as v\vec v is given by:
1vv=131,2,2=13, 23, 23\dfrac{1}{\lVert\vec{v}\rVert}\vec{v} = \dfrac{1}{3} \lang 1, 2, -2\rang =\boxed{ \left\lang\dfrac{1}{3}, \ \dfrac{2}{3}, \ -\dfrac{2}{3}\right\rang }

Part B)

Write the answer to Part A) as a linear combination of the standard basis vectors i^, j^, k^R3\hat i, \ \hat j, \ \hat k \in \reals^3.
Recall that the standard basis vectors in R3\reals^3 are defined to be:
i^=[100],  j^=[010],  k^=[001]\hat i = \begin{bmatrix} 1\\ 0\\ 0 \end{bmatrix} , \ \ \hat j = \begin{bmatrix} 0\\ 1\\ 0 \end{bmatrix} , \ \ \hat k = \begin{bmatrix} 0\\ 0\\ 1 \end{bmatrix}
So we can rewrite the vector 13, 23,23\left\lang\dfrac{1}{3}, \ \dfrac{2}{3}, -\dfrac{2}{3}\right\rang as follows:
[   1/3   2/31/3]=  13[100]  +  23[010]    23[001]=  13 i^ + 23 j^  23 k^\begin{aligned} \begin{bmatrix} {\ \ \ 1}/{3}\\ {\ \ \ 2}/{3}\\ -{1}/{3} \end{bmatrix} &= \ \ \dfrac{1}{3} \begin{bmatrix} 1\\ 0\\ 0 \end{bmatrix} \ \ + \ \ \dfrac{2}{3} \begin{bmatrix} 0\\ 1\\ 0 \end{bmatrix} \ \ - \ \ \dfrac{2}{3} \begin{bmatrix} 0\\ 0\\ 1 \end{bmatrix}\\[2em] &= \ \ \dfrac{1}{3} \ \hat i \ + \ \dfrac{2}{3} \ \hat j \ - \ \dfrac{2}{3} \ \hat k \end{aligned}

Practice: Unit Vectors

Find the value of kk such that u=k,12,k\vec u = \left\lang k, \dfrac{1}{\sqrt2}, -k \right\rang is a unit vector.
Extra Practice