Introduction to Magnitude and Direction

Welcome to the world of vectors! If you’ve ever followed a map or played a video game, you’ve used vectors without even knowing it. While a regular number (a scalar) just tells us "how much" (like 5 kg or 10 minutes), a vector tells us two things: how much and which way. In this chapter, we are going to learn how to calculate exactly how long a vector is (its magnitude) and where it’s pointing (its direction).

Don't worry if this seems a bit abstract at first. Think of it like a treasure map: "Walk 10 meters" isn't enough to find the gold—you need to know 10 meters in which direction! That combination is what makes a vector.


1. Magnitude: The "How Big" Part

The magnitude of a vector is simply its length. In your exams, you might see it called the modulus. We represent the magnitude of a vector \(\mathbf{a}\) using vertical bars: \(|\mathbf{a}|\) or \(|\vec{OA}|\).

In Two Dimensions (2D)

Imagine a vector \(\mathbf{a} = \begin{pmatrix} x \\ y \end{pmatrix}\). If you draw this on a grid, it forms a right-angled triangle where \(x\) is the horizontal side and \(y\) is the vertical side. To find the length of the longest side (the vector itself), we use our old friend Pythagoras’ Theorem!

The Formula:
\(|\mathbf{a}| = \sqrt{x^2 + y^2}\)

Example: Find the magnitude of \(\mathbf{v} = \begin{pmatrix} 3 \\ 4 \end{pmatrix}\).
\(|\mathbf{v}| = \sqrt{3^2 + 4^2} = \sqrt{9 + 16} = \sqrt{25} = 5\).

In Three Dimensions (3D)

Even though 3D vectors have three components \(\begin{pmatrix} x \\ y \\ z \end{pmatrix}\), the rule is exactly the same—just add the third component to the square root.

The Formula:
\(|\mathbf{a}| = \sqrt{x^2 + y^2 + z^2}\)

Quick Review:
- Magnitude always results in a positive number (lengths can't be negative!).
- When squaring negative components, like \((-3)^2\), remember the answer is positive 9!

Key Takeaway: Magnitude is just the distance from the start to the end of the vector. Use Pythagoras!


2. Direction: The "Which Way" Part

In 2D, the direction of a vector is the angle \(\theta\) it makes with a horizontal line parallel to the positive x-axis. By convention, we measure this angle anticlockwise and keep it between \(0^\circ\) and \(360^\circ\).

How to Calculate the Direction

To find the angle, we use basic trigonometry. For a vector \(\begin{pmatrix} x \\ y \end{pmatrix}\), the angle \(\theta\) can be found using:
\(\tan \theta = \frac{y}{x}\) or \(\theta = \tan^{-1}\left(\frac{y}{x}\right)\)

Wait! There is a catch!
Your calculator will only give you one value for \(\tan^{-1}\), but vectors can point in four different quadrants. To get the right direction, always sketch the vector first.

Step-by-Step Process for Direction:

1. Sketch it: Draw a quick set of axes and show which way the vector is going.
2. Find the "Alpha" angle: Calculate the basic acute angle \(\alpha = \tan^{-1}\left(\frac{|y|}{|x|}\right)\) (use positive numbers here to keep it simple).
3. Adjust for the quadrant:
- Top-Right (x+, y+): Angle is just \(\alpha\).
- Top-Left (x-, y+): Angle is \(180^\circ - \alpha\).
- Bottom-Left (x-, y-): Angle is \(180^\circ + \alpha\).
- Bottom-Right (x+, y-): Angle is \(360^\circ - \alpha\).

Did you know? The OCR syllabus only requires you to calculate direction for 2D vectors. For 3D vectors, you only need to know how to find the magnitude!

Key Takeaway: Always sketch your vector to make sure your angle is pointing in the right direction.


3. Converting Between Forms

Sometimes you are given the "recipe" for a vector (components), and sometimes you are given the "result" (magnitude and direction). You need to be able to switch between them.

From Component Form to Magnitude/Direction

This is what we just did! Use Pythagoras for magnitude and \(\tan^{-1}\) for direction.

From Magnitude/Direction Form to Component Form

If you know the magnitude \(r\) and the angle \(\theta\), you can find the \(x\) and \(y\) components using sine and cosine:
\(x = r \cos \theta\)
\(y = r \sin \theta\)

Example: A vector has magnitude 10 and a direction of \(30^\circ\).
\(x = 10 \cos 30^\circ = 8.66\)
\(y = 10 \sin 30^\circ = 5\)
Vector \(\mathbf{a} = \begin{pmatrix} 8.66 \\ 5 \end{pmatrix}\).

Memory Aid: Cosine is for the Crosswise (horizontal) part. Sine is for the Skyward (vertical) part.


4. Common Pitfalls and Tips

Even the best mathematicians make small slips! Watch out for these:

1. Negative Signs: When calculating \(|\mathbf{a}| = \sqrt{x^2 + y^2}\), if \(x = -3\), make sure you square it to get \(+9\). A very common mistake is to type \(-3^2\) into a calculator and get \(-9\). Use brackets: \((-3)^2\).
2. Radians vs Degrees: Always check your calculator mode! Most vector problems in this chapter use degrees (\(0^\circ\) to \(360^\circ\)), but always read the question carefully.
3. The "Zero" Vector: The vector \(\begin{pmatrix} 0 \\ 0 \end{pmatrix}\) has a magnitude of 0 and no specific direction.
4. Unit Vectors: A unit vector is any vector with a magnitude of exactly 1. You can turn any vector into a unit vector by dividing it by its own magnitude.


Chapter Summary Checklist

- Can you calculate magnitude? (Square the parts, add them, square root the answer).
- Can you find the direction? (Use \(\tan^{-1}\) and check your sketch for the quadrant).
- Can you use 3D magnitude? (Just Pythagoras with an extra \(z^2\)).
- Can you switch forms? (Use \(\cos\) for \(x\) and \(\sin\) for \(y\)).

Don't worry if this feels like a lot of steps! Practice finding the magnitude and direction for five different vectors, and it will soon become second nature. You've got this!