Welcome to the World of Vectors!

Welcome! Today we are diving into Vectors. If you have ever given someone directions like "Walk 50 meters toward the big oak tree," you are already using vectors! In Mathematics, a vector isn't just a number; it is a tool that tells us both how far and in what direction. This chapter is fundamental because it bridges the gap between simple numbers and the physical world of movement and forces. Don't worry if it feels a bit "abstract" at first—we will break it down step-by-step!

1. What is a Vector?

In your previous math journey, you mostly dealt with Scalars. A scalar is just a size (magnitude), like "5 kilograms" or "10 degrees Celsius." A Vector is different because it has two parts:
1. Magnitude (How big is it?)
2. Direction (Where is it going?)

Visualizing Vectors

We represent a vector using an arrow. The length of the arrow shows the magnitude, and the tip shows the direction.
- Notation: We often write vectors as a (bold in print) or \(\underline{a}\) (underlined when writing by hand). If a vector goes from point \(A\) to point \(B\), we write it as \(\vec{AB}\).

Column Vectors

To make math easier, we use Column Vectors. For a 2D vector, we write it as \(\begin{pmatrix} x \\ y \end{pmatrix}\). For 3D, we add a third number: \(\begin{pmatrix} x \\ y \\ z \end{pmatrix}\).
- The \(x\) tells you how far to move along the x-axis.
- The \(y\) tells you how far to move along the y-axis.
- The \(z\) tells you how far to move along the z-axis.

Quick Review: A vector is a "movement instruction." If you have \(\begin{pmatrix} 3 \\ -2 \end{pmatrix}\), it means "Go 3 steps right and 2 steps down."

2. Position Vectors vs. Displacement Vectors

This is a common area where students get confused, but here is a simple way to remember it:

Position Vectors: These always start from the Origin \((0, 0, 0)\). We call the position vector of point \(A\) as \(\vec{OA}\). It tells you exactly where point \(A\) is located in space.

Displacement Vectors: These tell you how to get from one point to another (e.g., from \(A\) to \(B\)).
Memory Trick: To find the vector \(\vec{AB}\), think "Destination minus Start."
\(\vec{AB} = \vec{OB} - \vec{OA}\)

Common Mistake to Avoid: Students often do \(\vec{OA} - \vec{OB}\) by accident. Always remember: Second letter minus First letter!

Key Takeaway: Position vectors are like coordinates but written as a column. Displacement vectors are the "path" between two positions.

3. Unit Vectors: i, j, and k

Think of \(\mathbf{i}, \mathbf{j},\) and \(\mathbf{k}\) as the "building blocks" of all vectors.
- \(\mathbf{i}\) is a vector of length 1 in the \(x\) direction: \(\begin{pmatrix} 1 \\ 0 \\ 0 \end{pmatrix}\)
- \(\mathbf{j}\) is a vector of length 1 in the \(y\) direction: \(\begin{pmatrix} 0 \\ 1 \\ 0 \end{pmatrix}\)
- \(\mathbf{k}\) is a vector of length 1 in the \(z\) direction: \(\begin{pmatrix} 0 \\ 0 \\ 1 \end{pmatrix}\)

So, the vector \(\begin{pmatrix} 2 \\ 3 \\ -5 \end{pmatrix}\) can be written as \(2\mathbf{i} + 3\mathbf{j} - 5\mathbf{k}\). They mean exactly the same thing!

4. Magnitude (Length) of a Vector

To find the length of a vector, we use a 3D version of Pythagoras' Theorem. If you have vector \(\mathbf{a} = \begin{pmatrix} x \\ y \\ z \end{pmatrix}\), the magnitude (written as \(|\mathbf{a}|\)) is:
\(|\mathbf{a}| = \sqrt{x^2 + y^2 + z^2}\)

Example: Find the magnitude of \(\mathbf{v} = 3\mathbf{i} - 4\mathbf{j} + 12\mathbf{k}\).
\(|\mathbf{v}| = \sqrt{3^2 + (-4)^2 + 12^2} = \sqrt{9 + 16 + 144} = \sqrt{169} = 13\).

Did you know? A Unit Vector is any vector with a magnitude of exactly 1. To turn any vector \(\mathbf{a}\) into a unit vector in the same direction, simply divide the vector by its own magnitude!

5. Scalar Product (The Dot Product)

This is a very important tool in the 9709 syllabus. The Scalar Product is a way of multiplying two vectors to get a Scalar (a single number) as the answer. There are two ways to calculate it:

Method A: Using Components

If \(\mathbf{a} = \begin{pmatrix} x_1 \\ y_1 \\ z_1 \end{pmatrix}\) and \(\mathbf{b} = \begin{pmatrix} x_2 \\ y_2 \\ z_2 \end{pmatrix}\), then:
\(\mathbf{a} \cdot \mathbf{b} = (x_1 \times x_2) + (y_1 \times y_2) + (z_1 \times z_2)\)

Method B: Using Angles

\(\mathbf{a} \cdot \mathbf{b} = |\mathbf{a}||\mathbf{b}| \cos \theta\)
(Where \(\theta\) is the angle between the two vectors).

Why is this useful? Finding Angles!

By combining both methods, we can find the angle between any two vectors:
\(\cos \theta = \frac{\mathbf{a} \cdot \mathbf{b}}{|\mathbf{a}||\mathbf{b}|}\)

Step-by-Step Process to find an Angle:
1. Calculate the Dot Product (\(\mathbf{a} \cdot \mathbf{b}\)).
2. Find the magnitude of the first vector (\(|\mathbf{a}|\)).
3. Find the magnitude of the second vector (\(|\mathbf{b}|\)).
4. Plug them into the formula and use \(\cos^{-1}\) to find \(\theta\).

Important Property: Perpendicular Vectors
If two vectors are at 90 degrees to each other, their scalar product is ZERO because \(\cos 90^\circ = 0\).
If \(\mathbf{a} \cdot \mathbf{b} = 0\), the vectors are perpendicular!

Key Takeaway: The dot product is your "go-to" tool for anything involving angles or checking if lines are at right angles.

6. Summary of Key Formulas

- Vector from A to B: \(\vec{AB} = \mathbf{b} - \mathbf{a}\)
- Magnitude: \(|\mathbf{a}| = \sqrt{x^2 + y^2 + z^2}\)
- Dot Product: \(\mathbf{a} \cdot \mathbf{b} = x_1x_2 + y_1y_2 + z_1z_2\)
- Angle Formula: \(\cos \theta = \frac{\mathbf{a} \cdot \mathbf{b}}{|\mathbf{a}||\mathbf{b}|}\)
- Unit Vector: \(\hat{\mathbf{a}} = \frac{\mathbf{a}}{|\mathbf{a}|}\)

Don't worry if this seems tricky at first! Vectors are just a new language for describing space. Practice finding the magnitude and dot product first—once you are comfortable with those, the rest will fall into place. You've got this!