Unit 9: Introduction to 3D Geometry

Contents

1. Coordinate Axes and Planes

In three-dimensional space, we use three mutually perpendicular lines passing through a common origin O to define position. These are the X, Y, and Z axes.

The Coordinate Planes

These axes taken in pairs determine three coordinate planes:

2. Coordinates and Octants

The three coordinate planes divide the entire space into eight parts known as Octants. The coordinates of a point P are written as an ordered triple (x, y, z).

Octant I II III IV V VI VII VIII
x + - - + + - - +
y + + - - + + - -
z + + + + - - - -

3. Distance Between Two Points

The distance between two points P(x1, y1, z1) and Q(x2, y2, z2) is an extension of the 2D distance formula.

PQ = √((x2 - x1)2 + (y2 - y1)2 + (z2 - z1)2)

4. Section Formula

The section formula helps find the coordinates of a point R that divides the line segment joining P(x1, y1, z1) and Q(x2, y2, z2) in the ratio m : n.

Internal Division:

R = ( (mx2 + nx1) / (m+n), (my2 + ny1) / (m+n), (mz2 + nz1) / (m+n) )

External Division:

R = ( (mx2 - nx1) / (m-n), (my2 - ny1) / (m-n), (mz2 - nz1) / (m-n) )

Mid-point Formula: If R is the mid-point (ratio 1:1), then:
R = ( (x1 + x2) / (2), (y1 + y2) / (2), (z1 + z2) / (2) )

5. Exam Focus Enhancements

Exam Tips
Common Mistakes
Frequently Asked Questions

Q: What is the distance of point (x, y, z) from the origin?
A: d = √(x2 + y2 + z2).

Q: How many octants are there?
A: There are 8 octants, just as there are 4 quadrants in 2D geometry.