6. Vectors in Euclidean Space

Magnitude And Direction

Magnitude and Direction

students, imagine trying to describe a walk across a basketball court 🏀. Saying “I moved 5 meters” is not enough. You also need to say which way you moved. That is the big idea behind vectors: they have both size and direction. In this lesson, you will learn how to measure a vector’s size, understand its direction, and connect both ideas to vectors in Euclidean space.

What Magnitude and Direction Mean

A vector is a quantity that has both magnitude and direction. The magnitude tells how long the vector is, and the direction tells where it points. In Euclidean space, vectors are often written as ordered lists of numbers, such as $\mathbf{v} = \langle 3,4 \rangle$ in two dimensions or $\mathbf{v} = \langle 2,-1,5 \rangle$ in three dimensions.

The magnitude of a vector is its length. It is written as $\lVert \mathbf{v} \rVert$. For a vector $\mathbf{v} = \langle x,y \rangle$, the magnitude is found using the Pythagorean theorem:

$$

$\lVert \mathbf{v} Vert = \sqrt{x^2+y^2}$

$$

For a vector in three dimensions, $\mathbf{v} = \langle x,y,z \rangle$, the formula becomes:

$$

$\lVert \mathbf{v} Vert = \sqrt{x^2+y^2+z^2}$

$$

This works because the vector forms the diagonal of a right-angled box-like shape in space. The formula gives the straight-line distance from the origin to the point $(x,y,z)$.

Direction tells us the way a vector points. Two vectors can have the same direction even if they have different magnitudes. For example, $\langle 2,4 \rangle$ and $\langle 1,2 \rangle$ point in the same direction because one is a scalar multiple of the other. The vector $\langle -1,2 \rangle$ points differently because its direction is not the same.

Finding Magnitude in Euclidean Space

Let’s practice with a simple example. Suppose $\mathbf{v} = \langle 3,4 \rangle$. Its magnitude is

$$

\lVert $\mathbf{v}$ Vert = $\sqrt{3^2+4^2}$ = $\sqrt{9+16}$ = $\sqrt{25}$ = 5

$$

So the vector has length $5$. This is the classic $3$-$4$-$5$ triangle from geometry. If a drone flies $3$ units east and $4$ units north, its total displacement is not $7$ units, but $5$ units because displacement is the straight-line path ✈️.

Now try a three-dimensional vector such as $\mathbf{u} = \langle 1,2,2 \rangle$.

$$

\lVert $\mathbf{u}$ Vert = $\sqrt{1^2+2^2+2^2}$ = $\sqrt{1+4+4}$ = $\sqrt{9}$ = 3

$$

This means the vector’s length is $3$. In 3D, magnitude still means distance from the origin.

Magnitude is always nonnegative. That means $\lVert \mathbf{v} \rVert \ge 0$ for every vector $\mathbf{v}$. The only vector with magnitude $0$ is the zero vector, written as $\mathbf{0}$. In coordinates, this might be $\langle 0,0 \rangle$ or $\langle 0,0,0 \rangle$.

A useful idea is that vectors with the same direction but different lengths are scalar multiples. If $\mathbf{b} = 3\mathbf{a}$, then $\mathbf{b}$ points in the same direction as $\mathbf{a}$, but it is three times as long. If the scalar is negative, the direction reverses. For example, $-2\mathbf{a}$ points exactly opposite $\mathbf{a}$.

Understanding Direction

Direction is about orientation, not size. In Euclidean space, direction can be described in several ways.

One way is by using coordinates and comparing vectors. If two vectors are scalar multiples with a positive scalar, they share direction. If the scalar is negative, they point in opposite directions. For example, $\langle 2,6 \rangle$ and $\langle 1,3 \rangle$ have the same direction because $\langle 2,6 \rangle = 2\langle 1,3 \rangle$. But $\langle -2,-6 \rangle$ points in the opposite direction because $\langle -2,-6 \rangle = -2\langle 1,3 \rangle$.

Another way to describe direction is with a unit vector. A unit vector is a vector with magnitude $1$. To turn a nonzero vector $\mathbf{v}$ into a unit vector, divide by its magnitude:

$$

$\mathbf{u} = \frac{\mathbf{v}}{\lVert \mathbf{v} Vert}$

$$

This new vector keeps the same direction but has length $1$.

For example, if $\mathbf{v} = \langle 3,4 \rangle$, then $\lVert \mathbf{v} \rVert = 5$, so the unit vector in the same direction is

$$

$\mathbf{u}$ = $\frac{1}{5}$\langle 3,4 \rangle = $\left$\langle $\frac{3}{5}$,$\frac{4}{5}$ $\right$\rangle

$$

Check the magnitude:

$$

$\left$\lVert $\left$\langle $\frac{3}{5}$,$\frac{4}{5}$ $\right$\rangle \rightVert = $\sqrt{\left(\frac{3}{5}\right)^2+\left(\frac{4}{5}\right)^2}$ = $\sqrt{\frac{9}{25}+\frac{16}{25}}$ = $\sqrt{1}$ = 1

$$

So $\left\langle \frac{3}{5},\frac{4}{5} \right\rangle$ gives the direction of $\langle 3,4 \rangle$ without the size.

This idea is used in navigation, physics, and computer graphics 🎮. For example, a game character might need to move in a certain direction at a chosen speed. The direction can come from a unit vector, while the speed changes the magnitude.

Magnitude and Direction Together

Magnitude and direction work together to fully describe a vector. If you know only the magnitude, you know how big something is but not where it points. If you know only the direction, you know orientation but not length.

This is why a vector is more informative than a single number. A scalar, such as $7$, tells only amount. A vector like $\langle 7,0 \rangle$ tells amount and direction.

A common procedure is to separate a vector into magnitude and direction by writing

$$

$\mathbf{v} = \lVert \mathbf{v} Vert \mathbf{u}$

$$

where $\mathbf{u}$ is a unit vector in the direction of $\mathbf{v}$. This shows that every nonzero vector can be seen as a length times a direction.

Example: Suppose $\mathbf{v} = \langle -6,8 \rangle$.

First find the magnitude:

$$

\lVert $\mathbf{v}$ Vert = $\sqrt{(-6)^2+8^2}$ = $\sqrt{36+64}$ = $\sqrt{100}$ = 10

$$

Now find the unit vector:

$$

$\mathbf{u}$ = $\frac{\mathbf{v}}{\lVert \mathbf{v} Vert}$ = $\frac{1}{10}$\langle -6,8 \rangle = $\left$\langle -$\frac{3}{5}$,$\frac{4}{5}$ $\right$\rangle

$$

So we can write

$$

$\mathbf{v} = 10\left\langle -\frac{3}{5},\frac{4}{5} \right\rangle$

$$

This means the vector points left and up, and its length is $10$.

In Euclidean space, this is powerful because many problems become easier when you separate “how much” from “which way.” For example, in force analysis, a push can be described by its strength and direction. In travel problems, a displacement tells both distance and heading.

Why This Matters in Linear Algebra

Vectors in Euclidean space are a key part of Linear Algebra because they help model real objects and relationships. Magnitude and direction are not just geometry ideas; they are the foundation for operations with vectors.

When you add vectors, you combine movements. When you multiply by scalars, you change magnitude and possibly direction. For example, if $\mathbf{v}$ is a displacement, then $2\mathbf{v}$ has twice the magnitude and the same direction, while $-\mathbf{v}$ has the same magnitude but opposite direction.

These ideas connect to many later topics. Dot products use vector lengths and angles. Projections rely on direction. In machine learning and physics, vectors help describe data, forces, velocities, and position. Understanding magnitude and direction makes these later topics much easier to learn.

A strong way to think about vectors is as arrows. The arrow’s length is the magnitude, and the arrowhead shows the direction. In a coordinate plane, you can draw a vector starting at the origin and ending at a point. The coordinates of that endpoint describe the vector itself.

Conclusion

students, the main idea of this lesson is that a vector has two essential parts: magnitude and direction. The magnitude tells the vector’s length, and the direction tells where it points. You can find magnitude using the distance formula, and you can describe direction by comparing vectors or by using unit vectors. Together, these ideas help explain what vectors mean in Euclidean space and why they are so useful in Linear Algebra. Whether you are describing motion, force, or position, magnitude and direction give you the full picture 🌟.

Study Notes

  • A vector has both magnitude and direction.
  • The magnitude of $\mathbf{v} = \langle x,y \rangle$ is $\lVert \mathbf{v} \rVert = \sqrt{x^2+y^2}$.
  • The magnitude of $\mathbf{v} = \langle x,y,z \rangle$ is $\lVert \mathbf{v} \rVert = \sqrt{x^2+y^2+z^2}$.
  • Magnitude is always $\ge 0$.
  • The zero vector $\mathbf{0}$ has magnitude $0$.
  • Two vectors have the same direction if one is a positive scalar multiple of the other.
  • A negative scalar multiple gives the opposite direction.
  • A unit vector has magnitude $1$.
  • A unit vector in the direction of a nonzero vector $\mathbf{v}$ is $\mathbf{u} = \frac{\mathbf{v}}{\lVert \mathbf{v} \rVert}$.
  • Every nonzero vector can be written as $\mathbf{v} = \lVert \mathbf{v} \rVert \mathbf{u}$, where $\mathbf{u}$ is a unit vector.
  • Magnitude and direction together describe a vector completely.

Practice Quiz

5 questions to test your understanding