Introduction to the Scalar Product
Welcome! In this chapter, we are going to explore one of the most useful tools in your vector toolkit: the scalar product. You might also hear people call it the "dot product" because of the symbol we use (\(\cdot\)).
Up until now, you’ve learned how to add vectors and multiply them by a single number (a scalar). But what happens when you "multiply" two vectors together? The scalar product is a way to do this that results in a scalar (just a regular number) rather than a new vector. This number tells us a lot about the relationship between the two vectors, especially the angle between them!
1. How to Calculate the Scalar Product
There are two ways to calculate the scalar product, depending on what information you have. Don't worry if this seems tricky at first; both methods eventually lead to the same result.
Method A: Using Components (The Algebraic Way)
If you know the components of two vectors, \( \mathbf{v} = \begin{pmatrix} v_1 \\ v_2 \\ v_3 \end{pmatrix} \) and \( \mathbf{w} = \begin{pmatrix} w_1 \\ w_2 \\ w_3 \end{pmatrix} \), the scalar product is found by multiplying the corresponding parts and adding them all up.
The Formula:
\( \mathbf{v} \cdot \mathbf{w} = v_1w_1 + v_2w_2 + v_3w_3 \)
Example: If \( \mathbf{v} = \begin{pmatrix} 1 \\ -2 \\ 3 \end{pmatrix} \) and \( \mathbf{w} = \begin{pmatrix} 4 \\ 0 \\ 5 \end{pmatrix} \), then:
\( \mathbf{v} \cdot \mathbf{w} = (1 \times 4) + (-2 \times 0) + (3 \times 5) \)
\( \mathbf{v} \cdot \mathbf{w} = 4 + 0 + 15 = 19 \)
Method B: Using Magnitudes and Angles (The Geometric Way)
If you know how long the vectors are and the angle between them, you can use this version.
The Formula:
\( \mathbf{v} \cdot \mathbf{w} = |\mathbf{v}| |\mathbf{w}| \cos \theta \)
Where:
\( |\mathbf{v}| \) and \( |\mathbf{w}| \) are the magnitudes (lengths) of the vectors.
\( \theta \) is the angle between the two vectors (where \( 0^\circ \leq \theta \leq 180^\circ \)).
Key Takeaway:
The scalar product results in a single number (a scalar). It is commutative, which is a fancy way of saying the order doesn't matter: \( \mathbf{v} \cdot \mathbf{w} = \mathbf{w} \cdot \mathbf{v} \).
2. Finding the Angle Between Two Vectors
One of the most common exam questions asks you to find the angle \( \theta \) between two vectors. To do this, we simply rearrange Method B!
The Formula for the Angle:
\( \cos \theta = \frac{\mathbf{v} \cdot \mathbf{w}}{|\mathbf{v}| |\mathbf{w}|} \)
Step-by-Step Guide:
- Calculate the scalar product (\( \mathbf{v} \cdot \mathbf{w} \)) using the components.
- Calculate the magnitude of the first vector: \( |\mathbf{v}| = \sqrt{v_1^2 + v_2^2 + v_3^2} \).
- Calculate the magnitude of the second vector: \( |\mathbf{w}| = \sqrt{w_1^2 + w_2^2 + w_3^2} \).
- Plug these three numbers into the formula to find \( \cos \theta \).
- Use your calculator’s inverse cosine function (\( \arccos \) or \( \cos^{-1} \)) to find \( \theta \).
Common Mistake to Avoid: Make sure your calculator is in the correct mode! If the question asks for the angle in degrees, use Degree mode; if it uses \(\pi\), use Radian mode.
3. Perpendicular and Parallel Vectors
The scalar product is a "detector" for how vectors are oriented relative to each other.
Perpendicular Vectors (Orthogonal)
If two vectors are perpendicular, the angle between them is \( 90^\circ \) (or \( \frac{\pi}{2} \) radians). Since \( \cos 90^\circ = 0 \), the entire scalar product becomes zero.
Important Rule:
If \( \mathbf{v} \) and \( \mathbf{w} \) are non-zero vectors and \( \mathbf{v} \cdot \mathbf{w} = 0 \), then the vectors are perpendicular.
Did you know? This is a very common "Show that..." question in IB exams. If you see the word "perpendicular" or "orthogonal," your first instinct should be to set the scalar product to zero!
Parallel Vectors
If two vectors are parallel, the angle between them is either \( 0^\circ \) (pointing the same way) or \( 180^\circ \) (pointing opposite ways).
- If \( \theta = 0^\circ \), then \( \mathbf{v} \cdot \mathbf{w} = |\mathbf{v}| |\mathbf{w}| \) (since \( \cos 0^\circ = 1 \)).
- If \( \theta = 180^\circ \), then \( \mathbf{v} \cdot \mathbf{w} = -|\mathbf{v}| |\mathbf{w}| \) (since \( \cos 180^\circ = -1 \)).
Remember from previous chapters: vectors are also parallel if one is a scalar multiple of the other (e.g., \( \mathbf{v} = k\mathbf{w} \)).
Quick Review Box:
\( \mathbf{v} \cdot \mathbf{w} > 0 \implies \) The angle is acute (less than \( 90^\circ \)).
\( \mathbf{v} \cdot \mathbf{w} = 0 \implies \) The vectors are perpendicular (\( 90^\circ \)).
\( \mathbf{v} \cdot \mathbf{w} < 0 \implies \) The angle is obtuse (more than \( 90^\circ \)).
4. Geometric Properties and Applications
The scalar product follows similar rules to regular multiplication, which makes algebraic manipulation much easier:
- Distributive property: \( \mathbf{a} \cdot (\mathbf{b} + \mathbf{c}) = \mathbf{a} \cdot \mathbf{b} + \mathbf{a} \cdot \mathbf{c} \).
- Scalar multiplication: \( (k\mathbf{v}) \cdot \mathbf{w} = k(\mathbf{v} \cdot \mathbf{w}) \).
- Self-product: \( \mathbf{v} \cdot \mathbf{v} = |\mathbf{v}|^2 \). (This is a very useful trick! Multiplying a vector by itself gives you its magnitude squared).
Memory Aid: Think of the scalar product as a measure of how much one vector "goes in the direction" of another. If they are perpendicular, they have nothing in common, so the product is zero!
Summary of Key Takeaways
- Definition 1: \( \mathbf{v} \cdot \mathbf{w} = v_1w_1 + v_2w_2 + v_3w_3 \)
- Definition 2: \( \mathbf{v} \cdot \mathbf{w} = |\mathbf{v}| |\mathbf{w}| \cos \theta \)
- Perpendicular: \( \mathbf{v} \cdot \mathbf{w} = 0 \)
- Parallel: \( \mathbf{v} \cdot \mathbf{w} = \pm |\mathbf{v}| |\mathbf{w}| \)
- Magnitude connection: \( |\mathbf{v}| = \sqrt{\mathbf{v} \cdot \mathbf{v}} \)
Note: For further applications, such as finding the angle between two lines, remember that you should use the direction vectors of the lines in the scalar product formula. You can find more on this in the "Vector equations of lines" and "Intersections and angles" chapters.