Definition
The Midpoint Formula calculates the coordinates of the exact center point between two endpoints. It represents the arithmetic mean of the coordinates of the points.
For 2D points and :
For 3D points and :
- How to read: “The midpoint M equals the point whose coordinates are the average of the x-coordinates, the average of the y-coordinates, and (in 3D) the average of the z-coordinates.”
- Meaning: M is the unique point that divides a line segment into two congruent, equal parts.
Why It Matters
The midpoint represents the fundamental concepts of balance, symmetry, and averaging. In structural engineering, it identifies the balance point of beams; in computer graphics (LERP), it is the base case for interpolation; and in geometry, it is the key to proving theorems about bisectors and medians.
Core Concepts
- Arithmetic Mean: The formula treats each dimension independently, calculating the average position along each axis.
- Equidistance: The midpoint is guaranteed to be equidistant from both endpoints () and collinear with them.
- Vector Representation: Using position vectors and , the midpoint vector is:
- Section Formula (Generalization): The midpoint is a special case of the section formula (weighted average) where the ratio is . For a point dividing a segment at fraction : How to read: “The point equals one minus times vector sub one plus times vector sub two.” Meaning: This is linear interpolation (LERP), where yields the midpoint.