Welcome to the World of Vectors!
In this chapter, we are going to explore Vectors. If you’ve ever followed directions like "walk 50 meters North," you’ve already used a vector! Unlike regular numbers that just tell us "how much" (like your age or the temperature), vectors tell us how much AND in what direction.
Whether you are aiming a kick in a football match or programming a satellite, vectors are the mathematical tools that make it happen. Don't worry if it feels a bit abstract at first—we will break it down piece by piece.
1. Scalar vs. Vector: What’s the Difference?
Before we dive in, let’s clear up a common point of confusion. In Mathematics, we deal with two main types of quantities:
• Scalars: These only have magnitude (size). Examples include time, mass, and speed. It doesn't matter "which way" 5 minutes is; it's just 5 minutes!
• Vectors: These have both magnitude and direction. Examples include displacement (distance in a certain direction), velocity, and force.
How to Write Them Down
When you are writing by hand, you can’t make a letter "bold" easily. Instead, you should underline the letter, like a. In textbooks, you will see them in bold, like a. If a vector goes from point A to point B, we write it as \(\vec{AB}\).
Quick Takeaway: A scalar is just a number; a vector is a number with a "pointing" instruction.
2. Vectors in 2D and 3D
We usually describe vectors using components. This is like giving someone "GPS coordinates" for how to move.
Unit Vector Notation (\(\mathbf{i}, \mathbf{j}, \mathbf{k}\))
We use special letters to represent moving 1 unit in the main directions:
• \(\mathbf{i}\) is 1 unit in the \(x\)-direction (right).
• \(\mathbf{j}\) is 1 unit in the \(y\)-direction (up).
• \(\mathbf{k}\) is 1 unit in the \(z\)-direction (outwards/3D).
Example: A 2D vector a = \(3\mathbf{i} + 4\mathbf{j}\) means "move 3 steps right and 4 steps up."
A 3D vector b = \(2\mathbf{i} - 5\mathbf{j} + 7\mathbf{k}\) means "2 right, 5 down, and 7 forward."
Column Vectors
Sometimes, it’s easier to write them in a bracket (one number over the other). This is called a column vector:
For 2D: \(\begin{pmatrix} x \\ y \end{pmatrix}\)
For 3D: \(\begin{pmatrix} x \\ y \\ z \end{pmatrix}\)
Did you know? Column vectors are great because they keep the \(x\), \(y\), and \(z\) values neatly separated, making it harder to mix them up during calculations!
3. Magnitude and Direction
The magnitude is the length of the vector. The direction is the angle it makes with the positive \(x\)-axis.
Calculating Magnitude
To find the length (denoted by \(|\mathbf{a}|\)), we use a version of Pythagoras’ Theorem.
For 2D: \(|\mathbf{a}| = \sqrt{x^2 + y^2}\)
For 3D: \(|\mathbf{a}| = \sqrt{x^2 + y^2 + z^2}\)
Common Mistake to Avoid: When a component is negative, remember that squaring it makes it positive! For example, \((-3)^2 = 9\), not \(-9\).
Calculating Direction (2D only)
To find the angle \(\theta\), we usually use trigonometry: \(\tan(\theta) = \frac{y}{x}\).
Always draw a quick sketch of your vector to make sure your angle is in the right "quadrant" (the right section of the graph).
Quick Takeaway: Magnitude is the distance from start to finish. Direction is the "steering angle."
4. Basic Operations: Adding and Scaling
Working with vectors is very similar to basic algebra, but you just do it in "layers."
Adding Vectors
To add two vectors, just add their corresponding parts.
Example: \(\begin{pmatrix} 2 \\ 3 \end{pmatrix} + \begin{pmatrix} 1 \\ 5 \end{pmatrix} = \begin{pmatrix} 2+1 \\ 3+5 \end{pmatrix} = \begin{pmatrix} 3 \\ 8 \end{pmatrix}\).
Visualizing it: Think of this as the "Triangle Law." If you follow vector a, then follow vector b, the total journey is a + b.
Scalar Multiplication
If you multiply a vector by a regular number (a scalar), it changes the size but keeps the direction the same (or reverses it if the number is negative).
Example: \(2 \times \begin{pmatrix} 3 \\ -1 \end{pmatrix} = \begin{pmatrix} 6 \\ -2 \end{pmatrix}\).
This vector is now twice as long but points in the same direction.
Memory Aid: Adding vectors is like "connecting flights"—you end up at the final destination. Scaling a vector is like "zooming in or out" on a map.
5. Position Vectors and Distance
A position vector tells you where a point is relative to the origin \((0,0)\). We usually call the origin \(O\), so the position of point A is \(\vec{OA}\), which we often simplify to a.
The Displacement Vector
If you want to move from point A to point B, you use the formula:
\(\vec{AB} = \mathbf{b} - \mathbf{a}\)
(Or: "Destination minus Start").
Distance Between Two Points
The distance between point A \((a_1, a_2)\) and point B \((b_1, b_2)\) is just the magnitude of the vector \(\vec{AB}\):
Distance = \(\sqrt{(b_1 - a_1)^2 + (b_2 - a_2)^2}\)
Quick Takeaway: To find the vector between two points, always subtract the first point from the second.
6. Special Types of Vectors
Parallel Vectors
Two vectors are parallel if one is a multiple of the other. For example, \(\begin{pmatrix} 1 \\ 2 \end{pmatrix}\) and \(\begin{pmatrix} 3 \\ 6 \end{pmatrix}\) are parallel because the second one is just the first one multiplied by 3.
Unit Vectors
A unit vector is a vector with a magnitude of exactly 1. To turn any vector into a unit vector, just divide it by its own magnitude.
Formula: \(\mathbf{\hat{a}} = \frac{\mathbf{a}}{|\mathbf{a}|}\)
Equal Vectors
Vectors are equal only if they have the exact same magnitude AND the exact same direction.
Quick Review Box:
• Magnitude: Use Pythagoras.
• Parallel: One is a multiple of the other.
• AB: Always \(\mathbf{b} - \mathbf{a}\).
• Unit Vector: Magnitude is 1.
7. Solving Problems and Mechanics
Vectors aren't just for geometry; they are the backbone of Mechanics. You will use them to represent:
• Resultant Forces: The total force acting on an object is the sum of all individual force vectors.
• Velocity: Speed in a specific direction.
• Acceleration: If an object is accelerating at \(2\mathbf{i} + 3\mathbf{j}\), it means its velocity is changing in both the \(x\) and \(y\) directions simultaneously.
Example Step-by-Step: If a boat is trying to travel at \(10\mathbf{i}\) (East) but the tide is pushing it at \(2\mathbf{j}\) (North), the resultant velocity is simply the sum: \(10\mathbf{i} + 2\mathbf{j}\). You can then find the boat's actual speed by calculating the magnitude: \(\sqrt{10^2 + 2^2} = \sqrt{104} \approx 10.2\) m/s.
Final Encouragement: Vectors can feel like learning a new language. At first, you're just translating words (components), but soon you'll be "speaking" fluently and solving complex 3D problems with ease. Keep practicing those sketches!