Definition
The Midpoint Formula in 3D is a formula used to find the coordinates of the point that lies exactly halfway between two points in a three-dimensional Cartesian coordinate system. For points and , the midpoint is:
- How to read: “The midpoint M is the coordinate point where the x-coordinate is x one plus x two all divided by two, the y-coordinate is y one plus y two all divided by two, and the z-coordinate is z one plus z two all divided by two.”
- Meaning: Each coordinate of the midpoint is the arithmetic mean of the corresponding endpoint coordinates.
Why It Matters
In 3D modeling, robotics, and aerospace engineering, failing to accurately locate the center of a line segment leads to structural misalignments and navigational drift. It is the fundamental building block for higher-level spatial calculations like centers of mass or trajectory bisectors.
Core Concepts
-
Vector form (cleanest mental model)
- How to read: “The position vector m is equal to one-half times the vector sum of r one and r two.”
- Meaning / when to use: The midpoint position vector is the average of the two endpoint position vectors—generalizes to any dimension and to weighted averages (barycentric coordinates).
-
Equal distance & collinearity
- and M lies on the segment.
- How to read: “The distance from P one to M is equal to the distance from M to P two, which is one-half the total distance from P one to P two.”
- Meaning: By construction the midpoint splits the segment into two equal parts—the unique center of symmetry of the pair .
-
Section formula generalization (3D) A point dividing the segment from P1 to P2 in the ratio m:n (or at fraction t) has position
- How to read: “The point P is given by n times the vector r one plus m times the vector r two, all divided by m plus n; or alternatively, the quantity one minus t times the vector r one, plus t times the vector r two.”
- Meaning / when to use: General section formula — weighted average of two position vectors. Midpoint is . Use for interpolation, animation, and barycentric coordinates.