Andromeda
Note

Midpoint Formula

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 (x1,y1)(x_1, y_1) and (x2,y2)(x_2, y_2): M=(x1+x22,y1+y22)M = \left( \frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2} \right)

For 3D points (x1,y1,z1)(x_1, y_1, z_1) and (x2,y2,z2)(x_2, y_2, z_2): M=(x1+x22,y1+y22,z1+z22)M = \left( \frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}, \frac{z_1 + z_2}{2} \right)

  • 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 MM is guaranteed to be equidistant from both endpoints (P1M=MP2P_1M = MP_2) and collinear with them.
  • Vector Representation: Using position vectors r1\mathbf{r_1} and r2\mathbf{r_2}, the midpoint vector m\mathbf{m} is: m=12(r1+r2)\mathbf{m} = \frac{1}{2}(\mathbf{r_1} + \mathbf{r_2})
  • Section Formula (Generalization): The midpoint is a special case of the section formula (weighted average) where the ratio is 1:11:1. For a point dividing a segment at fraction tt: P=(1t)r1+tr2\mathbf{P} = (1-t)\mathbf{r_1} + t\mathbf{r_2} How to read: “The point PP equals one minus tt times vector rr sub one plus tt times vector rr sub two.” Meaning: This is linear interpolation (LERP), where t=0.5t=0.5 yields the midpoint.

Connected Concepts