Welcome to the World of Vectors!

In this chapter, we are going to explore Vectors. While they might sound like something out of a sci-fi movie, vectors are actually very simple: they are just a way of describing movement. Whether you are moving a character in a video game or giving someone directions to the local shop, you are using the logic of vectors!

By the end of these notes, you’ll be able to describe translations, perform calculations with vectors, and even use them to prove geometric facts. Don’t worry if it seems a bit different from the math you've done before—we'll take it step-by-step.


1. What exactly is a Vector?

In mathematics, we usually deal with "scalars." A scalar is just a number that tells us "how much" of something there is (like 5kg or 10 degrees). A vector is special because it tells us two things at once: magnitude (size) and direction.

Column Vectors

The easiest way to write a vector is using a column vector. It looks like two numbers stacked on top of each other inside brackets:

\( \begin{pmatrix} x \\ y \end{pmatrix} \)

  • The top number (\( x \)) tells you how many units to move horizontally (Right is positive, Left is negative).
  • The bottom number (\( y \)) tells you how many units to move vertically (Up is positive, Down is negative).

Example: The vector \( \begin{pmatrix} 3 \\ -2 \end{pmatrix} \) means "Move 3 units to the right and 2 units down."

Visualizing Vectors

In diagrams, we represent vectors as arrows. The length of the arrow shows the magnitude, and the arrowhead shows the direction. We often name them with bold letters like a or by the start and end points like \( \vec{AB} \).

Quick Review:
Positive \( x \): Right
Negative \( x \): Left
Positive \( y \): Up
Negative \( y \): Down

Key Takeaway: A vector is an instruction for movement that includes both distance and direction.


2. Vector Arithmetic (Adding, Subtracting, and Scaling)

Working with vectors is a lot like working with normal numbers, but you just do the math for the top and bottom numbers separately. Don't worry if this seems tricky at first; it's just basic addition and subtraction!

Addition and Subtraction

To add or subtract vectors, simply add or subtract the corresponding numbers.

If \( \mathbf{a} = \begin{pmatrix} 2 \\ 5 \end{pmatrix} \) and \( \mathbf{b} = \begin{pmatrix} 3 \\ -1 \end{pmatrix} \), then:
\( \mathbf{a} + \mathbf{b} = \begin{pmatrix} 2+3 \\ 5+(-1) \end{pmatrix} = \begin{pmatrix} 5 \\ 4 \end{pmatrix} \)

Analogy: Think of adding vectors like taking two steps in a journey. If you walk 2 miles East and 5 miles North (Vector a), and then walk another 3 miles East and 1 mile South (Vector b), your total journey is 5 miles East and 4 miles North.

Scalar Multiplication

You can "scale" a vector by multiplying it by a normal number (a scalar). This changes its length but keeps it in the same direction (unless the number is negative!).

Example: If \( \mathbf{a} = \begin{pmatrix} 3 \\ 4 \end{pmatrix} \), then \( 2\mathbf{a} = \begin{pmatrix} 6 \\ 8 \end{pmatrix} \).

Did you know? If you multiply a vector by \( -1 \), the arrow stays the same size but points in the exact opposite direction! For example, \( -\begin{pmatrix} 1 \\ 2 \end{pmatrix} = \begin{pmatrix} -1 \\ -2 \end{pmatrix} \).

Key Takeaway: Treat the top and bottom numbers as separate "mini-sums." What you do to the top, you do to the bottom.


3. Vectors in Geometry (Higher Tier Focus)

This is where we use vectors to solve puzzles on shapes. In these problems, you usually have a diagram and need to find a "path" from one point to another using known vectors.

Finding Paths

Imagine you are in a city where you can only travel along certain roads. If you want to get from point A to point C, but there is no direct road, you might have to go from A to B, and then B to C.

Vector Rule: \( \vec{AC} = \vec{AB} + \vec{BC} \)

Parallel Vectors

This is a very important concept for exam questions! Two vectors are parallel if one is a multiple of the other.

Example: \( \begin{pmatrix} 2 \\ 3 \end{pmatrix} \) and \( \begin{pmatrix} 4 \\ 6 \end{pmatrix} \) are parallel because \( \begin{pmatrix} 4 \\ 6 \end{pmatrix} = 2 \times \begin{pmatrix} 2 \\ 3 \end{pmatrix} \).

Common Mistake to Avoid

When you are moving "against" an arrow in a diagram, you must use the negative of that vector. If the arrow for a goes from left to right, and you are traveling right to left, you must write \( -\mathbf{a} \).

Key Takeaway: To get from one point to another, just follow the "roads" (vectors) available. If you go backwards along an arrow, flip the sign!


Summary and Quick Tips

Memory Aid: The GPS Rule

Vectors are just like GPS instructions. The first number is your "East/West" instruction, and the second is your "North/South" instruction. If the GPS says \( \begin{pmatrix} -4 \\ 0 \end{pmatrix} \), it's just telling you to drive 4 miles West.

Key Terms Checklist:
  • Magnitude: The length of the vector.
  • Direction: Where the vector points.
  • Scalar: A regular number used to multiply a vector.
  • Collinear: A fancy word meaning "points that lie on the same straight line" (often proven using parallel vectors).

Final Encouragement: Vectors can feel strange because they are a mix of algebra and drawing. If you get stuck, try drawing the arrows out on a piece of grid paper. Once you can "see" the movement, the math usually follows!