Introduction to 3D Coordinate Space
In 2D, every point is located using two coordinates . In three-dimensional space, we add a third axis , the -axis , perpendicular to both the - and -axes. Every point in 3D space is then described by an ordered triple .
Ordered Triple: A set of three numbers that uniquely identifies the position of a point in 3D space. The - and -values describe horizontal position (as in 2D), while the -value describes height or depth.
Think of the corner of a room: the floor gives you and , and the height up the wall gives you . Any point in that room can be reached by moving along all three axes.
The three axes are mutually perpendicular. The origin is the point where all three axes meet. Positive is typically "upward" or "out of the page" depending on orientation.
Distance Between Two Points in 3D Space
The distance formula in 3D is a direct extension of the 2D Pythagorean theorem , we simply include the difference in the -coordinates as well.
3D Distance Formula: The distance between two points and in 3D space is:
The logic: moving from point 1 to point 2, you travel in the -direction, in the -direction, and in the -direction. The straight-line distance is the diagonal of the 3D rectangular box formed by these three steps , found using the Pythagorean theorem applied twice.
In 2D, the distance formula finds the hypotenuse of a right triangle. In 3D, it finds the long diagonal of a rectangular box , just one extra step of Pythagoras!
Calculate the distance between and .
Step 1: Identify the coordinate differences.
Step 2: Apply the formula.
The distance between and is units.
Students often forget to square each difference individually before adding. Make sure you compute , not , these are not the same thing!