Welcome to the World of Vectors!
In this chapter, we are going to explore vectors. If you’ve ever followed a treasure map ("three paces North, five paces East") or played a flight simulator, you’ve already used vectors! While a simple number (a scalar) tells us "how much," a vector tells us "how much" AND "in what direction."
Don't worry if this seems a bit abstract at first. We’ll break it down step-by-step, moving from flat 2D shapes into the 3D world, and see how vectors help us solve real-world problems like finding the total force on an object.
1. The Language of Vectors
Before we start calculating, we need to speak the language. In the OCR MEI syllabus, we distinguish between two types of measurements:
- Scalar: A quantity with magnitude (size) only. Examples: mass, time, speed, distance.
- Vector: A quantity with both magnitude and direction. Examples: velocity, displacement, force, acceleration.
How do we write them? (Notation)
In textbooks, vectors are usually printed in bold (e.g., a). When you are writing them by hand, you should underline them (e.g., a). There are three main ways to represent a vector:
- Component Form (Column Vectors): Written as \( \mathbf{a} = \begin{pmatrix} a_1 \\ a_2 \end{pmatrix} \). The top number tells you how far to move across (\(x\)), and the bottom tells you how far to move up (\(y\)).
- Unit Vector Form: Using \( \mathbf{i} \) (one unit right) and \( \mathbf{j} \) (one unit up). For example, \( 3\mathbf{i} + 2\mathbf{j} \).
- Magnitude-Direction Form: Describing the vector by its length and the angle it makes with a specific axis (like a compass bearing).
Quick Review: A unit vector is simply a vector with a magnitude of 1. We often use a "hat" notation like \( \mathbf{\hat{r}} \) to show it's a unit vector.
Key Takeaway: Vectors aren't just points on a map; they are instructions on how to move from one place to another!
2. Vector Arithmetic: Adding, Subtracting, and Scaling
Adding vectors is very different from adding normal numbers. Imagine you are walking: if you walk 4km East and then 3km North, you haven't moved 7km away from your start point—you've moved 5km (the diagonal)!
Addition and Subtraction
- Algebraically: Just add or subtract the corresponding components.
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} \). - Geometrically (The Head-to-Tail Rule): To add \( \mathbf{a} + \mathbf{b} \), draw vector a, then draw vector b starting from the end of a. The "resultant" vector goes from the very start to the very end.
Scalar Multiplication
If you multiply a vector by a number (a scalar), you change its length.
Example: \( 2\mathbf{a} \) is twice as long as a but points in the same direction. \( -1\mathbf{a} \) is the same length but points in the opposite direction.
Common Mistake to Avoid: When subtracting vectors like \( \mathbf{a} - \mathbf{b} \), students often forget that this is the same as \( \mathbf{a} + (-\mathbf{b}) \). Ensure you reverse the direction of the second vector!
Key Takeaway: Parallel vectors are always scalar multiples of each other. If \( \mathbf{a} = k\mathbf{b} \), they are parallel!
3. Magnitude and Direction
Sometimes we need to know exactly how long a vector is (the modulus) and which way it's pointing.
Calculating Magnitude
For a 2D vector \( \mathbf{a} = \begin{pmatrix} x \\ y \end{pmatrix} \), we use Pythagoras' Theorem:
\( |\mathbf{a}| = \sqrt{x^2 + y^2} \)
Calculating Direction
We usually find the angle \( \theta \) the vector makes with the positive \(x\)-axis (or the unit vector \( \mathbf{i} \)) using trigonometry:
\( \tan(\theta) = \frac{y}{x} \)
Did you know? This is exactly how GPS works! It calculates the magnitude and direction between your current "position vector" and your destination.
Key Takeaway: Use Pythagoras for length and \( \tan^{-1} \) for the angle. Always draw a quick sketch to make sure your angle is in the correct quadrant!
4. Position Vectors and Distance
A position vector is a special vector that starts at the origin (0,0). It tells you the location of a point relative to the start.
- The position vector of point \(A\) is written as \( \vec{OA} \) or simply a.
- If you want to find the vector between two points \(A\) and \(B\), use the formula:
\( \vec{AB} = \mathbf{b} - \mathbf{a} \)
Memory Aid: To get from \(A\) to \(B\), you "go back to the origin from \(A\)" (\(-\mathbf{a}\)) and then "out to \(B\)" (\(+\mathbf{b}\)). So, "Destination minus Start"!
Distance Between Two Points
To find the distance between \(A\) and \(B\), first find the vector \( \vec{AB} \), then calculate its magnitude \( |\vec{AB}| \).
Key Takeaway: \( \vec{AB} = \text{position of } B - \text{position of } A \). This is a foundational tool for all vector geometry.
5. Moving into 3D Dimensions
The beauty of vectors is that everything we just learned for 2D works exactly the same way for 3D! We just add a third component, \(z\), and a third unit vector, \( \mathbf{k} \).
- 3D Vector: \( \mathbf{a} = \begin{pmatrix} a_1 \\ a_2 \\ a_3 \end{pmatrix} = a_1\mathbf{i} + a_2\mathbf{j} + a_3\mathbf{k} \)
- 3D Magnitude: \( |\mathbf{a}| = \sqrt{x^2 + y^2 + z^2} \)
Imagine i is East, j is North, and k is "Up" (altitude). This allows us to map motion in the real world, like a drone flying through a park.
Encouraging Phrase: 3D vectors can be hard to visualize on paper, but remember: the math is exactly the same as 2D, just with one extra number to crunch!
6. Using Vectors: Forces and Resultants
In Mechanics, we use vectors to represent forces. When multiple forces act on an object (like wind and an engine on a plane), the total effect is called the resultant force.
How to find the Resultant Force:
- Convert all forces into component form (\( \mathbf{i}, \mathbf{j}, \mathbf{k} \)).
- Add the vectors together.
- The sum is your resultant force vector.
If the resultant force is zero, the object is in equilibrium—meaning it's either stationary or moving at a constant velocity!
Key Takeaway: Resultant Force = Sum of all individual force vectors. If \( \sum \mathbf{F} = 0 \), the system is balanced.
Chapter Summary Review
Quick Check List:
- Can you identify a scalar vs a vector?
- Do you remember that parallel vectors are multiples of each other?
- Is your magnitude formula \( \sqrt{x^2 + y^2} \)?
- Do you use \( \mathbf{b} - \mathbf{a} \) to find the vector between two points?
- Are you comfortable adding a z-axis for 3D problems?
Vectors are a powerful "shorthand" for geometry. Master the notation and the basic arithmetic, and the complex problem-solving will follow naturally!