Introduction: What Are We Measuring?
In your previous math lessons, you might have worked with numbers that just tell you "how much" of something there is—like 5kg of apples or 10 liters of water. In Vectors, we need to know more! A vector doesn't just tell us the size; it tells us which way it’s going.
Think of it like giving someone directions to a hidden treasure. If you say "Walk 50 meters," they won't find it. But if you say "Walk 50 meters (Magnitude) at an angle of 30° North (Direction)," they’ll get there exactly. In this chapter, we will learn how to calculate these two vital pieces of information.
1. Magnitude: Finding the "Size" of a Vector
The magnitude of a vector is simply its length. In mathematical language, we also call this the modulus.
The Notation
If we have a vector a, we write its magnitude as \(|a|\). If the vector goes from point O to point A, we write it as \(|\vec{OA}|\). Those vertical bars mean "the size of."
How to Calculate Magnitude
Imagine your vector is the slope of a hill. To find its length, we treat the vector like the longest side (the hypotenuse) of a right-angled triangle. Because of this, we use our old friend Pythagoras’ Theorem!
For a vector in component form \(\binom{x}{y}\) or \(xi + yj\):
Magnitude formula: \(|a| = \sqrt{x^2 + y^2}\)
Step-by-Step Example:
Find the magnitude of the vector \(a = 3i + 4j\).
1. Identify \(x\) and \(y\): Here, \(x = 3\) and \(y = 4\).
2. Square them: \(3^2 = 9\) and \(4^2 = 16\).
3. Add them: \(9 + 16 = 25\).
4. Square root the result: \(\sqrt{25} = 5\).
The magnitude is 5.
Quick Review: Magnitude
• Magnitude = Length of the arrow.
• Symbol = \(|a|\).
• Calculation = Always use \(\sqrt{x^2 + y^2}\).
2. Direction: Which Way is it Pointing?
The direction of a vector is the angle it makes with a horizontal line. Specifically, we measure the angle anticlockwise from the positive x-axis.
The Formula
Since we are thinking of the vector as a triangle, we use trigonometry (specifically Tangent) to find the angle \(\theta\).
Direction formula: \(\tan \theta = \frac{y}{x}\) or \(\theta = \tan^{-1}\left(\frac{y}{x}\right)\)
Important: The "Quadrant Watch"
Don’t worry if this seems tricky at first, but your calculator can sometimes be a bit "lazy." It only knows how to give angles in a certain range. To get the correct direction between \(0^\circ\) and \(360^\circ\), you should always sketch the vector first.
• If the vector is in the 1st quadrant (top right): Your calculator answer is correct.
• If the vector is in the 2nd quadrant (top left): Add \(180^\circ\) to your calculator's answer (or do \(180 - \text{angle}\)).
• If the vector is in the 3rd quadrant (bottom left): Add \(180^\circ\) to your calculator's answer.
• If the vector is in the 4th quadrant (bottom right): Add \(360^\circ\) to your calculator's answer.
Step-by-Step Example:
Find the direction of the vector \(\binom{-3}{3}\).
1. Sketch it: It goes left 3 and up 3. This is in the top-left quadrant.
2. Use the formula: \(\tan^{-1}(\frac{3}{-3}) = \tan^{-1}(-1) = -45^\circ\).
3. Adjust for the quadrant: Since it's in the top-left, we do \(-45^\circ + 180^\circ = 135^\circ\).
The direction is \(135^\circ\).
3. Converting Between Forms
Sometimes a question will give you the component form (\(x\) and \(y\)) and ask for magnitude/direction form, or vice versa.
From Magnitude/Direction to Components
If you know the length \(r\) and the angle \(\theta\), you can find the \(x\) and \(y\) parts using:
\(x = r \cos \theta\)
\(y = r \sin \sin \theta\)
Memory Aid: SOH CAH TOA
If you forget which is which, remember that \(x\) is "Across" (related to Cos) and \(y\) is "High" (related to Sin).
Common Mistakes to Avoid
• Squaring Negatives: When calculating magnitude, remember that \((-3)^2\) is positive 9. A magnitude can never be a negative number! Your calculator might tell you \(-3^2 = -9\) if you don't use brackets, so be careful.
• Measuring from the wrong axis: Always start your angle from the positive x-axis (the "3 o'clock" position) and turn anticlockwise.
• Forgetting Units: Ensure your calculator is in Degrees mode unless the question specifically asks for Radians.
Summary Key Takeaways
1. Magnitude \(|a|\): The length of the vector, calculated using \(\sqrt{x^2 + y^2}\).
2. Direction \(\theta\): The angle from the positive x-axis, calculated using \(\tan^{-1}(\frac{y}{x})\).
3. Sketching: Always draw a quick sketch to make sure your angle makes sense for the quadrant the vector is in.
4. Modulus: This is just another word for magnitude.
Did you know?
Vectors are used in video game development every single day! When a character in a game like Minecraft or Fortnite moves, the game uses magnitude to decide how fast they go and direction to decide which way they face.