In three-dimensional space, one of the frequent tasks is to find the distance of a given point from a specific plane. For instance, asking for the distance from the point \((2, 3, -1)\) to the \(xy\)-plane means determining how far the point is from being directly on that plane.
The \(xy\)-plane is characterized by a \(z\)-coordinate of zero, meaning any point on this plane has the form \((x, y, 0)\).
To find how far our point \((2, 3, -1)\) is from the \(xy\)-plane, we simply look at the absolute value of the \(z\)-coordinate of the point. This is because the plane's lack of a \(z\) component means only vertical distance (perpendicular to the plane) matters.
Therefore, the distance is straightforward, calculated as:
- Take the absolute value of the \(z\)-coordinate: \(|z| = |-1| = 1\).