Welcome to Vectors: Magnitude, Position, and Direction!

In our previous look at vectors, we learned that they are quantities with both magnitude (size) and direction. In this chapter, we are going to learn how to calculate exactly how long a vector is, how to describe where a point is located using a position vector, and how to create a "standard" vector of length 1, known as a unit vector.

Don't worry if vectors feel a bit abstract right now. Think of them like instructions on a map: "Walk 3 steps East and 4 steps North." By the end of these notes, you'll be able to calculate exactly how far you've walked in a straight line!


1. Magnitude of a Vector

The magnitude of a vector is simply its length. In the Pearson Edexcel IGCSE, we use the notation \(|\mathbf{a}|\) or \(|\vec{AB}|\) to represent the magnitude. This is always a positive scalar value (a normal number).

How to Calculate Magnitude

If you have a vector in terms of its components, such as \(\mathbf{a} = x\mathbf{i} + y\mathbf{j}\), finding the magnitude is just like using Pythagoras' Theorem. Because the \(\mathbf{i}\) (horizontal) and \(\mathbf{j}\) (vertical) components are at right angles to each other, the magnitude is the hypotenuse of a right-angled triangle.

The Formula:

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

Example:

Find the magnitude of the vector \(\mathbf{v} = 3\mathbf{i} - 4\mathbf{j}\).
1. Identify the components: \(x = 3\) and \(y = -4\).
2. Apply the formula: \(|\mathbf{v}| = \sqrt{3^2 + (-4)^2}\).
3. Calculate: \(|\mathbf{v}| = \sqrt{9 + 16} = \sqrt{25} = 5\).
The magnitude of vector \(\mathbf{v}\) is \(5\) units.

Quick Tip: Since we are squaring the components, negative signs "disappear" during the calculation. Always remember that \((-4)^2\) is positive \(16\)!

Key Takeaway:

Magnitude is the length of the vector, calculated using the square root of the sum of the squares of its components: \(|\mathbf{a}| = \sqrt{x^2 + y^2}\).


2. Position Vectors

A position vector is a specific type of vector that tells us the location of a point relative to the origin \(O(0, 0)\). We usually write the position vector of point \(A\) as \(\vec{OA}\) or simply as a bold lowercase letter \(\mathbf{a}\).

Finding the Vector Between Two Points

Imagine you are at point \(A\) and you want to travel to point \(B\). To find the vector \(\vec{AB}\), you can think of it as "going back to the origin" and then "going to point \(B\)".

The Formula:

\(\vec{AB} = \vec{OB} - \vec{OA} = \mathbf{b} - \mathbf{a}\)

Analogy: Think of the origin as a Central Train Station. To get from Friend A's house to Friend B's house, you take a train from A back to the Central Station (\(-\mathbf{a}\)) and then a train from the Station to B (\(+\mathbf{b}\)).

Step-by-Step Example:

Point \(A\) has coordinates \((2, 5)\) and point \(B\) has coordinates \((6, 8)\). Find the vector \(\vec{AB}\).
1. Write the position vectors: \(\vec{OA} = 2\mathbf{i} + 5\mathbf{j}\) and \(\vec{OB} = 6\mathbf{i} + 8\mathbf{j}\).
2. Use the formula: \(\vec{AB} = \vec{OB} - \vec{OA}\).
3. Subtract components: \(\vec{AB} = (6 - 2)\mathbf{i} + (8 - 5)\mathbf{j}\).
4. Result: \(\vec{AB} = 4\mathbf{i} + 3\mathbf{j}\).

Connection to Coordinate Geometry:

You might notice this looks like the distance formula from Section 8 of your syllabus. The distance between two points is simply the magnitude of the vector between them:
\(d^2 = (x_1 - x_2)^2 + (y_1 - y_2)^2\) is the same as \(|\vec{AB}|^2\).

Common Mistake to Avoid:
Students often accidentally do \(\mathbf{a} - \mathbf{b}\). Always remember: Finish minus Start. To get \(\vec{AB}\), you do \(B\) minus \(A\).


3. Unit Vectors

A unit vector is a vector that has a magnitude of exactly 1. We use unit vectors when we only care about the direction of a vector, not its actual size.

The standard unit vectors we use are \(\mathbf{i}\) (one unit in the \(x\)-direction) and \(\mathbf{j}\) (one unit in the \(y\)-direction).

How to Find a Unit Vector in a Specific Direction

To turn any vector \(\mathbf{a}\) into a unit vector (often written as \(\mathbf{\hat{a}}\)), you simply divide the vector by its own magnitude. This "scales" the vector down so that its length becomes 1 while keeping the direction exactly the same.

The Formula:

\(\mathbf{\hat{a}} = \frac{\mathbf{a}}{|\mathbf{a}|}\)

Example:

Find the unit vector in the direction of \(\mathbf{a} = 3\mathbf{i} + 4\mathbf{j}\).
1. Find the magnitude: \(|\mathbf{a}| = \sqrt{3^2 + 4^2} = 5\).
2. Divide the vector by its magnitude: \(\mathbf{\hat{a}} = \frac{3\mathbf{i} + 4\mathbf{j}}{5}\).
3. Final Answer: \(\mathbf{\hat{a}} = \frac{3}{5}\mathbf{i} + \frac{4}{5}\mathbf{j}\) (or \(0.6\mathbf{i} + 0.8\mathbf{j}\)).

Did you know?

Unit vectors are like "direction indicators." If you multiply a unit vector by any number \(k\), you get a new vector of length \(k\) pointing in that same direction!


Quick Review & Common Pitfalls

  • Notation: Use bold letters like \(\mathbf{a}\) or underlined letters in your own handwriting to show something is a vector.
  • Magnitude Formula: Always square the numbers before adding them: \(\sqrt{x^2 + y^2}\).
  • Position Vectors: The origin \(O\) is the starting point for \(\mathbf{a}\) and \(\mathbf{b}\).
  • Subtraction Order: \(\vec{AB}\) is always \(\mathbf{b} - \mathbf{a}\). Think "Destination minus Origin".
  • Unit Vector Check: If you calculate a unit vector and then find its magnitude, the answer should always be 1! If it isn't, check your division.
Final Thought:

"Don't worry if this seems tricky at first! Vectors are just a new way of describing geometry. Once you master the formulas for magnitude and subtraction, you have the 'skeleton' for solving almost any vector problem in this course."