Enter the coordinates of a vector to find its unit vector. Choose between 2D and 3D vectors.
A unit vector is a vector with a magnitude (length) of 1 unit. It's used to represent direction without regard to magnitude. Here's a comprehensive guide on how to calculate a unit vector for both 2D and 3D vectors:
For a 2D vector \(\vec{v} = (v_x, v_y)\), its unit vector \(\hat{u}\) is given by:
\[ \hat{u} = \frac{\vec{v}}{|\vec{v}|} = (\frac{v_x}{|\vec{v}|}, \frac{v_y}{|\vec{v}|}) \]For a 3D vector \(\vec{v} = (v_x, v_y, v_z)\), its unit vector \(\hat{u}\) is given by:
\[ \hat{u} = \frac{\vec{v}}{|\vec{v}|} = (\frac{v_x}{|\vec{v}|}, \frac{v_y}{|\vec{v}|}, \frac{v_z}{|\vec{v}|}) \]Where:
Let's calculate the unit vector of \(\vec{v} = (3, 4)\):
Therefore, the 2D unit vector is \(\hat{u} = (0.6, 0.8)\).
Let's calculate the unit vector of \(\vec{v} = (3, 4, 5)\):
Therefore, the 3D unit vector is \(\hat{u} \approx (0.424, 0.566, 0.707)\).
This diagram illustrates the original 2D vector \(\vec{v}\) (blue) and its corresponding unit vector \(\hat{u}\) (red). The green dashed circle represents the unit circle, demonstrating that the unit vector has a magnitude of 1.