6. Geometry and Vectors

3d Geometry

Work with three-dimensional coordinates, planes, lines, and compute distances, angles, and intersections in space.

3D Geometry

Hey students! 👋 Welcome to one of the most exciting topics in mathematics - 3D geometry! In this lesson, we'll explore how to work with shapes and objects that exist in three-dimensional space, just like the world around us. You'll learn to navigate through 3D coordinate systems, work with planes and lines in space, and calculate distances and angles between objects. By the end of this lesson, you'll have the tools to solve complex spatial problems and understand how mathematics describes our three-dimensional world! 🌍

Understanding the 3D Coordinate System

Let's start by expanding your knowledge from 2D to 3D! While you're familiar with the x and y axes from 2D coordinate geometry, 3D geometry introduces a third axis: the z-axis. Think of it this way - if you're standing in a room, the x-axis runs left to right, the y-axis runs forward and backward, and the z-axis runs up and down.

In the 3D coordinate system, every point is represented by three coordinates: (x, y, z). For example, the point (3, 4, 5) means you move 3 units along the x-axis, 4 units along the y-axis, and 5 units along the z-axis. This is incredibly useful in real life - GPS systems use 3D coordinates to determine not just your location on Earth's surface, but also your altitude! ✈️

The origin point (0, 0, 0) is where all three axes intersect, and from there, you can locate any point in 3D space. Positive x values go right, positive y values go away from you, and positive z values go up. This system is called a right-handed coordinate system because if you point your right thumb up (z-axis), your fingers curl from the x-axis toward the y-axis.

Distance Formula in 3D Space

Just like in 2D geometry, we often need to find the distance between two points in 3D space. The 3D distance formula extends the Pythagorean theorem to three dimensions. If you have two points A(x₁, y₁, z₁) and B(x₂, y₂, z₂), the distance between them is:

$$d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2 + (z_2 - z_1)^2}$$

Let's say you want to find the distance between points A(1, 2, 3) and B(4, 6, 7). Using our formula:

$$d = \sqrt{(4-1)^2 + (6-2)^2 + (7-3)^2} = \sqrt{9 + 16 + 16} = \sqrt{41} ≈ 6.4 \text{ units}$$

This formula is incredibly practical! Architects use it to calculate the shortest distance between structural elements in buildings, and video game developers use it to determine collision detection between 3D objects. 🎮

Equations of Planes in 3D Space

A plane in 3D space is a flat surface that extends infinitely in all directions. Think of a tabletop that goes on forever - that's a plane! The general equation of a plane is:

$$ax + by + cz + d = 0$$

where a, b, c, and d are constants, and (a, b, c) represents the normal vector to the plane. The normal vector is perpendicular to the plane and points away from it.

For example, the equation $2x + 3y + z - 6 = 0$ represents a plane. If you know three non-collinear points on a plane, you can find its equation. This is super useful in computer graphics - every surface you see in a 3D movie or video game is made up of tiny planes called polygons! 🎬

Another way to express a plane is using a point and a normal vector. If you have a point P₀(x₀, y₀, z₀) on the plane and a normal vector n = (a, b, c), the equation becomes:

$$a(x - x_0) + b(y - y_0) + c(z - z_0) = 0$$

Lines in 3D Space

Unlike in 2D where lines can be described by simple equations like y = mx + b, lines in 3D space are more complex because they can point in any direction through space. We typically describe 3D lines using parametric equations or vector equations.

The parametric form of a line passing through point P₀(x₀, y₀, z₀) with direction vector d = (a, b, c) is:

$$x = x_0 + at$$

$$y = y_0 + bt$$

$$z = z_0 + ct$$

where t is a parameter that can be any real number. As t changes, you get different points along the line.

For example, if a line passes through point (1, 2, 3) and has direction vector (2, -1, 4), its parametric equations are:

$$x = 1 + 2t, \quad y = 2 - t, \quad z = 3 + 4t$$

This concept is used extensively in 3D animation and robotics. When a robot arm moves from one position to another, engineers calculate the parametric equations of the path it should follow! 🤖

Angles Between Lines and Planes

Finding angles in 3D space involves working with direction vectors and normal vectors. The angle θ between two lines with direction vectors d₁ = (a₁, b₁, c₁) and d₂ = (a₂, b₂, c₂) can be found using the dot product formula:

$$\cos θ = \frac{|d_1 \cdot d_2|}{|d_1| |d_2|} = \frac{|a_1a_2 + b_1b_2 + c_1c_2|}{\sqrt{a_1^2 + b_1^2 + c_1^2} \sqrt{a_2^2 + b_2^2 + c_2^2}}$$

The angle between a line and a plane is the complement of the angle between the line's direction vector and the plane's normal vector. This is crucial in optics - when light hits a surface, the angle of incidence equals the angle of reflection, and these calculations help design everything from car headlights to telescope mirrors! 🔍

Intersections in 3D Space

Finding where geometric objects intersect in 3D space is a fundamental skill. Two planes can intersect in a line (unless they're parallel), and a line can intersect a plane at a point (unless they're parallel).

To find where a line intersects a plane, substitute the parametric equations of the line into the plane equation and solve for the parameter t. For example, if line L has equations x = 1 + 2t, y = 2 - t, z = 3 + 4t and plane P has equation x + y + z = 6, substitute:

$$(1 + 2t) + (2 - t) + (3 + 4t) = 6$$

$$6 + 5t = 6$$

$$t = 0$$

So the intersection point is (1, 2, 3). This type of calculation is essential in computer graphics for determining where objects collide or where shadows fall! 🌟

Conclusion

students, you've just mastered the fundamentals of 3D geometry! You now understand how to navigate 3D coordinate systems, calculate distances between points in space, work with equations of planes and lines, find angles between geometric objects, and determine intersection points. These skills form the foundation for advanced topics in engineering, computer science, physics, and architecture. The ability to visualize and calculate in three dimensions opens up a world of possibilities in both academic and real-world applications.

Study Notes

• 3D Coordinate System: Points represented as (x, y, z) with three perpendicular axes

• 3D Distance Formula: $d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2 + (z_2 - z_1)^2}$

• General Plane Equation: $ax + by + cz + d = 0$ where (a, b, c) is the normal vector

• Point-Normal Plane Equation: $a(x - x_0) + b(y - y_0) + c(z - z_0) = 0$

• Parametric Line Equations: $x = x_0 + at$, $y = y_0 + bt$, $z = z_0 + ct$

• Angle Between Lines: $\cos θ = \frac{|d_1 \cdot d_2|}{|d_1| |d_2|}$ using direction vectors

• Line-Plane Intersection: Substitute parametric line equations into plane equation and solve for parameter

• Normal Vector: Vector perpendicular to a plane, represented by coefficients (a, b, c) in plane equation

• Direction Vector: Vector that shows the direction of a line in 3D space

• Dot Product: $d_1 \cdot d_2 = a_1a_2 + b_1b_2 + c_1c_2$ for vectors d₁ = (a₁, b₁, c₁) and d₂ = (a₂, b₂, c₂)

Practice Quiz

5 questions to test your understanding

3d Geometry — High School Integrated Math | A-Warded