Welcome to the World of Vectors!
In this chapter, we are going to explore vectors. If you’ve ever used a GPS to find your way or played a video game where a character moves around a screen, you’ve already encountered vectors in action! While a normal number (like "5") just 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 will break it down step-by-step, using clear examples and simple language to help you master the basics of 2D vectors.
1. Scalars vs. Vectors: What's the Difference?
Before we dive in, let’s clear up two important terms:
- Scalar: A quantity that has magnitude (size) only. Examples: time, temperature, mass, distance, speed.
- Vector: A quantity that has both magnitude and direction. Examples: displacement, velocity, acceleration, force.
Analogy: Imagine you are at a park. If I tell you "walk 100 meters," that's a scalar (distance). You don't know where to go! If I tell you "walk 100 meters North," that's a vector (displacement). Now you have a specific destination.
Did you know? In textbooks, vectors are usually printed in bold (like a). When you write them by hand, you should underline them (like a) because you can't easily write in bold!
Key Takeaway:
A scalar is just a size; a vector is a size with a direction.
2. Describing Vectors: Notation and Components
In 2D math, we usually describe vectors using two main methods:
A. Column Vectors
This is a very neat way to write vectors using brackets: \( \mathbf{a} = \begin{pmatrix} x \\ y \end{pmatrix} \).
The top number (\(x\)) tells you how far to move horizontally (right is positive, left is negative).
The bottom number (\(y\)) tells you how far to move vertically (up is positive, down is negative).
B. Unit Vector Notation (\(\mathbf{i}\) and \(\mathbf{j}\))
We use special "building block" vectors called unit vectors:
\(\mathbf{i}\) is a vector of length 1 in the x-direction.
\(\mathbf{j}\) is a vector of length 1 in the y-direction.
So, the vector \( \begin{pmatrix} 3 \\ -2 \end{pmatrix} \) can be written as \( 3\mathbf{i} - 2\mathbf{j} \).
Important Terms to Know:
- Modulus/Magnitude: The actual "length" of the vector. We write this as \( |\mathbf{a}| \).
- Equal Vectors: Two vectors are equal only if they have the same magnitude AND direction.
- Parallel Vectors: One is a multiple of the other (e.g., a and 2a are parallel).
Quick Review:
Vector \( \begin{pmatrix} 4 \\ 5 \end{pmatrix} \) means "move 4 units right and 5 units up." It's the same as \( 4\mathbf{i} + 5\mathbf{j} \).
3. Vector Arithmetic: Adding, Subtracting, and Scaling
Working with vectors algebraically is actually very simple—you just handle the \(x\) and \(y\) parts separately!
Addition and Subtraction
To add or subtract, just add or subtract the corresponding components.
Example: If \( \mathbf{a} = \begin{pmatrix} 2 \\ 3 \end{pmatrix} \) and \( \mathbf{b} = \begin{pmatrix} 4 \\ -1 \end{pmatrix} \):
\( \mathbf{a} + \mathbf{b} = \begin{pmatrix} 2+4 \\ 3+(-1) \end{pmatrix} = \begin{pmatrix} 6 \\ 2 \end{pmatrix} \)
Scalar Multiplication
If you multiply a vector by a normal number (a scalar), it changes the length (and flips the direction if the number is negative).
Example: \( 3 \times \begin{pmatrix} 2 \\ -5 \end{pmatrix} = \begin{pmatrix} 6 \\ -15 \end{pmatrix} \)
Geometrical Interpretation
- Adding: Place the "tail" of the second vector at the "head" of the first. The result (the resultant) is the shortcut from the very start to the very end.
- Subtracting: To do \( \mathbf{a} - \mathbf{b} \), you can think of it as \( \mathbf{a} + (-\mathbf{b}) \). Just flip the direction of b and add it to a.
Common Mistake to Avoid:
Don't mix up the \(x\) and \(y\) values! Always keep the top numbers together and the bottom numbers together.
4. Magnitude and Direction
Sometimes you are given a vector in components (like \(3\mathbf{i} + 4\mathbf{j}\)) and you need to find its total length and the angle it makes.
Finding Magnitude (Length)
Since the components form a right-angled triangle, we use Pythagoras' Theorem!
For a vector \( \mathbf{a} = \begin{pmatrix} x \\ y \end{pmatrix} \):
\( |\mathbf{a}| = \sqrt{x^2 + y^2} \)
Finding Direction (Angle)
We usually use trigonometry (\(\tan\)) to find the angle \(\theta\) the vector makes with the positive x-axis or the unit vector \(\mathbf{i}\).
\( \tan(\theta) = \frac{y}{x} \)
Memory Aid (SOH CAH TOA): Remember that the vertical component is the 'opposite' side and the horizontal component is the 'adjacent' side.
Key Takeaway:
Use Pythagoras for length and Trig for the angle. Always draw a quick sketch to make sure your angle is in the right quadrant!
5. Position Vectors and Distance
A position vector is a special vector that starts at the Origin \( (0,0) \). It tells you the position of a point relative to the start line.
- The position vector of point \(A(3, 4)\) is \( \mathbf{a} = \vec{OA} = \begin{pmatrix} 3 \\ 4 \end{pmatrix} \).
- To find the vector between two points \(A\) and \(B\), we use: \( \vec{AB} = \mathbf{b} - \mathbf{a} \).
Encouraging Phrase: Think of \( \vec{AB} = \mathbf{b} - \mathbf{a} \) as "Destination minus Start." It's one of the most useful formulas in this chapter!
Calculating Distance
The distance between two points is simply the magnitude of the vector connecting them.
Distance \( = |\vec{AB}| = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2} \).
Quick Review:
To get from point A to point B, subtract the coordinates of A from the coordinates of B.
6. Solving Problems with Vectors
Vectors are incredibly useful for solving geometry problems or real-world physics problems involving forces.
Forces as Vectors
If multiple forces are acting on an object, the "total force" (called the resultant force) is found by simply adding all the force vectors together.
Collinear Points
If three points \(A, B,\) and \(C\) are collinear, it means they lie on a straight line. To prove this:
1. Find the vector \( \vec{AB} \).
2. Find the vector \( \vec{BC} \).
3. Show that \( \vec{AB} \) is a multiple of \( \vec{BC} \) (which proves they are parallel).
4. Since they share the point \(B\), they must be on the same line!
Section Summary:
- Resultant: The sum of two or more vectors.
- Equilibrium: When the sum of all vectors is zero \( \begin{pmatrix} 0 \\ 0 \end{pmatrix} \).
- Parallel: \( \mathbf{a} = k\mathbf{b} \) where \(k\) is a scalar.
Congratulations! You've covered the core concepts of General Vectors for MEI H630. Keep practicing with sketches and you'll be a vector expert in no time!