Welcome to Further Vectors!

In your standard A Level Maths course, you’ve already dipped your toes into the world of vectors. Now, we’re going to dive deeper! This chapter is all about moving from flat 2-D shapes into 3-D space. We will learn how to describe lines in 3-D, find out if those lines ever meet, and discover clever ways to multiply vectors to find angles or even create new directions. Vectors are the secret language of GPS, video game graphics, and engineering, so let's get started!

1. Equations of a Straight Line

In GCSE, you used \( y = mx + c \). In Further Maths, we use Vector Equations because they work perfectly in both 2-D and 3-D.

The Vector Form: \( \mathbf{r} = \mathbf{a} + \lambda\mathbf{b} \)

Think of a vector equation like a set of travel instructions:
1. \(\mathbf{a}\) (Position Vector): This is your "starting point" or any fixed point on the line.
2. \(\mathbf{b}\) (Direction Vector): This is the "way you are walking." It tells you the slope or heading of the line.
3. \(\lambda\) (The Parameter): This is just a number (a "scalar") that tells you how far to walk along the direction \(\mathbf{b}\). If \(\lambda = 2\), you've walked twice as far. If \(\lambda = -1\), you've walked backward!

Example: A line passing through point \((1, 2, 3)\) in the direction \(\begin{pmatrix} 4 \\ 5 \\ 6 \end{pmatrix}\) is written as:
\( \mathbf{r} = \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix} + \lambda \begin{pmatrix} 4 \\ 5 \\ 6 \end{pmatrix} \)

The Cartesian Form (The Symmetric Form)

Sometimes we don't want the \(\lambda\). We can rewrite the equation in 3-D by setting the \(x, y,\) and \(z\) components equal to each other. For a point \((a_1, a_2, a_3)\) and direction \(\begin{pmatrix} u_1 \\ u_2 \\ u_3 \end{pmatrix}\):

\( \frac{x - a_1}{u_1} = \frac{y - a_2}{u_2} = \frac{z - a_3}{u_3} \)

Quick Review:
- Vector form: Great for finding points on a line.
- Cartesian form: Great for algebraic manipulation without a parameter.

Common Mistake: Don't mix up the starting point (\(\mathbf{a}\)) and the direction (\(\mathbf{b}\))! The direction vector is always the one multiplied by \(\lambda\).

Key Takeaway: A 3-D line is just a "start point" plus "any amount of a direction."

2. The Scalar Product (Dot Product)

The Scalar Product is a way of "multiplying" two vectors to get a single number (a scalar). We use the notation \(\mathbf{a} \cdot \mathbf{b}\).

How to Calculate it

If \(\mathbf{a} = \begin{pmatrix} a_1 \\ a_2 \\ a_3 \end{pmatrix}\) and \(\mathbf{b} = \begin{pmatrix} b_1 \\ b_2 \\ b_3 \end{pmatrix}\), then:
\( \mathbf{a} \cdot \mathbf{b} = a_1b_1 + a_2b_2 + a_3b_3 \)

Why do we use it?

1. Finding Angles: We use the formula \( \cos(\theta) = \frac{\mathbf{a} \cdot \mathbf{b}}{|\mathbf{a}||\mathbf{b}|} \).
2. Testing Perpendicularity: This is the most important trick! If two vectors are at 90 degrees to each other, their scalar product is zero.
If \(\mathbf{a} \cdot \mathbf{b} = 0\), the vectors are perpendicular.

Memory Aid: "Dot for Degrees." Use the Dot product when you need to find an angle (degrees).

Key Takeaway: The scalar product is your "perpendicularity detector." If the result is 0, you've found a right angle!

3. Intersections: Do Lines Meet?

In 2-D, lines are either parallel or they intersect. In 3-D, there is a third, weird option: Skew Lines.

Three Types of Line Relationships:

  • Parallel: The direction vectors are multiples of each other (e.g., \(\begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}\) and \(\begin{pmatrix} 2 \\ 4 \\ 6 \end{pmatrix}\)).
  • Intersecting: The lines meet at a single point.
  • Skew: The lines are not parallel, but they also never meet! Think of two airplanes flying at different altitudes heading in different directions.

Step-by-Step: How to find an intersection

1. Write out the \(x, y,\) and \(z\) components for both lines (using different parameters, like \(\lambda\) and \(\mu\)).
2. Set the \(x\) components equal and the \(y\) components equal to create two equations.
3. Solve for \(\lambda\) and \(\mu\).
4. The Crucial Test: Plug your values into the \(z\) component equation. If they work, the lines intersect. If they don't, the lines are skew.

Don't worry if this seems tricky at first! The "test" in step 4 is where most students get confused. Just remember: in 3-D, you have three conditions (\(x, y,\) and \(z\)) but only two variables (\(\lambda, \mu\)). That's why lines usually miss each other!

Key Takeaway: To find an intersection, solve for the parameters using two dimensions and check if the third dimension agrees.

4. The Vector Product (Cross Product)

While the Scalar Product gives you a number, the Vector Product (\(\mathbf{a} \times \mathbf{b}\)) gives you a new vector.

What makes it special?

The result of \(\mathbf{a} \times \mathbf{b}\) is a vector that is perpendicular to both \(\mathbf{a}\) and \(\mathbf{b}\). If \(\mathbf{a}\) and \(\mathbf{b}\) are lying on a table, \(\mathbf{a} \times \mathbf{b}\) points straight up toward the ceiling!

How to Calculate it

The formula can look intimidating, but you will be given it in your formula booklet. If \(\mathbf{a} = \begin{pmatrix} a_1 \\ a_2 \\ a_3 \end{pmatrix}\) and \(\mathbf{b} = \begin{pmatrix} b_1 \\ b_2 \\ b_3 \end{pmatrix}\):

\( \mathbf{a} \times \mathbf{b} = \begin{pmatrix} a_2b_3 - a_3b_2 \\ a_3b_1 - a_1b_3 \\ a_1b_2 - a_2b_1 \end{pmatrix} \)

Did you know? This is called "anti-commutative." This means if you swap the order, the direction flips! \( \mathbf{a} \times \mathbf{b} = -(\mathbf{b} \times \mathbf{a}) \).

What if the result is zero?

If \(\mathbf{a} \times \mathbf{b} = \begin{pmatrix} 0 \\ 0 \\ 0 \end{pmatrix}\), it means the vectors are parallel. They aren't "opening up" any space between them to create a perpendicular direction.

Memory Aid: "Cross for a Constant Direction." Use the Cross product when you need a new Direction that is at right angles to your current ones.

Key Takeaway: The vector product is used to find a new direction that is 90 degrees to two known vectors. It’s also a test for parallel vectors.

Summary Checklist

Before your exam, make sure you can:
- [ ] Convert a line between vector and cartesian forms.
- [ ] Use the scalar product to find angles and prove lines are 90° apart.
- [ ] Check if 3-D lines are parallel, intersecting, or skew.
- [ ] Use the vector product formula to find a perpendicular vector.