Midpoint between two points
The midpoint is the point exactly halfway along the line segment joining two points. You find it by averaging the x-coordinates and averaging the y-coordinates:
midpoint = ((x₁ + x₂) ÷ 2, (y₁ + y₂) ÷ 2)
The result is an ordered pair (x, y). Because averaging is symmetric, it does not matter which point you label first — the midpoint is the same either way. All calculations run in your browser.