Welcome to the World of 3-D Space!
In your previous maths studies, you’ve likely worked a lot with vectors in 2-D (flat surfaces). In this chapter, we are stepping up into the third dimension! Learning about vectors and 3-D space is essential because our world is 3-D. Engineers use these concepts to design bridges, pilots use them for navigation, and game developers use them to create realistic 3-D environments.
Don't worry if visualizing things in 3-D feels a bit "trippy" at first—it’s a new skill that takes a little practice. We will break everything down into simple steps!
1. The Scalar Product (The Dot Product)
The scalar product (often called the dot product) is a clever way to multiply two vectors to get a single number (a scalar). Think of it as a way to measure how much one vector "points in the direction" of another.
How to Calculate It
There are two ways to find the scalar product of vectors \( \mathbf{a} \) and \( \mathbf{b} \). Depending on what information you have, you can choose the easiest one:
Method A: Using Components
If \( \mathbf{a} = \begin{pmatrix} a_1 \\ a_2 \\ a_3 \end{pmatrix} \) and \( \mathbf{b} = \begin{pmatrix} b_1 \\ b_2 \\ b_3 \end{pmatrix} \), then:
\( \mathbf{a} \cdot \mathbf{b} = a_1b_1 + a_2b_2 + a_3b_3 \)
Method B: Using Geometry
If you know the lengths (magnitudes) and the angle \( \theta \) between them:
\( \mathbf{a} \cdot \mathbf{b} = |\mathbf{a}| |\mathbf{b}| \cos\theta \)
Finding the Angle Between Two Vectors
By combining these two methods, we can find the angle between any two 3-D vectors. This is a very common exam question!
\( \cos\theta = \frac{a_1b_1 + a_2b_2 + a_3b_3}{|\mathbf{a}| |\mathbf{b}|} \)
Example: If the scalar product is positive, the angle is acute. If it's negative, the angle is obtuse.
The Perpendicular Test
This is a super useful "trick" to remember: If two non-zero vectors are perpendicular (at 90 degrees), their scalar product is always zero.
Why? Because \( \cos(90^\circ) = 0 \). If you see "show these are perpendicular," just show that \( \mathbf{a} \cdot \mathbf{b} = 0 \).
Quick Review:
• Multiply components and add them up to get the dot product.
• Result is 0? They are perpendicular!
• Use the formula to find the angle between vectors.
2. The Equation of a Plane
A plane is a flat, infinite 2-D surface in 3-D space. Think of a sheet of paper that goes on forever.
The "Normal" Vector
To define a plane, we need a normal vector (\( \mathbf{n} \)). This is a vector that sticks straight out of the plane at a 90-degree angle.
Analogy: Imagine a tabletop. A pencil standing straight up on the table is like the normal vector. No matter which way you slide the pencil, it’s always perpendicular to the surface.
Vector Form of a Plane
If \( \mathbf{a} \) is a point on the plane and \( \mathbf{n} \) is the normal vector, any point \( \mathbf{r} \) on the plane satisfies:
\( (\mathbf{r} - \mathbf{a}) \cdot \mathbf{n} = 0 \)
This literally means: "Any vector lying in the plane is perpendicular to the normal vector sticking out of it."
Cartesian Form of a Plane
This is usually the most useful form for calculations:
\( n_1x + n_2y + n_3z + d = 0 \)
Where \( \begin{pmatrix} n_1 \\ n_2 \\ n_3 \end{pmatrix} \) are the components of the normal vector, and \( d = -(\mathbf{a} \cdot \mathbf{n}) \).
Did you know? You can "read" the normal vector straight off the Cartesian equation! If you see \( 2x - 3y + 5z = 10 \), the normal vector is just \( \begin{pmatrix} 2 \\ -3 \\ 5 \end{pmatrix} \).
Common Mistake to Avoid
When calculating \( d \), students often forget the minus sign or mix up which vector is which. Remember: \( d \) is a constant number that fixes the plane's position in space.
Key Takeaway: The normal vector is the key to everything with planes. It tells you the "tilt" of the surface.
3. How Planes Intersect
When we have three different planes in 3-D space, they can interact in several ways. This is like looking at how the walls and ceiling of a room meet.
The Five Main Arrangements
- Intersection at a Point: Like the corner of a room where two walls and the ceiling meet. This happens when the system of equations has one unique solution.
- A Sheaf: The planes meet along a single common line. Think of the spine of a book where all the pages (planes) meet.
- Prismatic Intersection: The planes don't all meet at once. Instead, they meet in pairs, forming three parallel lines. It looks like a hollow triangular prism (like a Toblerone box!).
- Parallel Planes: The planes never meet (like the floors of a skyscraper).
- Two Parallel, One Intersecting: Two planes are like floors, and the third is like a wall cutting through them.
Using Matrices to Find Intersections
To find where three planes \( n_1x + n_2y + n_3z = d \) meet, we can use a matrix equation: \( \mathbf{M} \mathbf{x} = \mathbf{d} \).
• Use your calculator to find the inverse matrix \( \mathbf{M}^{-1} \).
• If \( \mathbf{x} = \mathbf{M}^{-1} \mathbf{d} \) gives an answer, that's your point of intersection.
• If the matrix is singular (determinant = 0), the planes either meet in a line (sheaf) or don't have a common intersection (prism/parallel).
Quick Review:
• One solution? They meet at a point.
• No solution or infinite solutions? Check if they form a sheaf or a prism.
4. The Angle Between Two Planes
Finding the angle between two flat surfaces might sound hard, but here is a simple trick: The angle between two planes is exactly the same as the angle between their normal vectors.
Step-by-Step Process:
1. Find the normal vector \( \mathbf{n}_1 \) of the first plane.
2. Find the normal vector \( \mathbf{n}_2 \) of the second plane.
3. Use the scalar product formula: \( \cos\theta = \frac{|\mathbf{n}_1 \cdot \mathbf{n}_2|}{|\mathbf{n}_1| |\mathbf{n}_2|} \).
4. We usually look for the acute angle, so use the absolute value (ignore the minus sign) of the dot product.
Memory Aid: Normals are the "representatives" of the planes. If you want to know what the planes are doing, just ask their normals!
Final Summary Takeaways
1. Scalar Product: Use \( \mathbf{a} \cdot \mathbf{b} = 0 \) to prove vectors are perpendicular.
2. Plane Equations: The coefficients of \( x, y, \) and \( z \) are just the components of the vector sticking straight out of the plane (the normal).
3. Intersections: Use your calculator and matrices to solve for the point where three planes meet.
4. Angles: To find the angle between planes, just find the angle between their normal vectors.
Keep practicing with your calculator—mastering the matrix functions will save you tons of time in the exam! You've got this!