A walkthrough, end to end.
- 1
Enter coordinates for two points.
- 2
The calculator returns the midpoint, distance, and slope.
- 3
Use any units — the math is purely geometric.
Midpoint formula
The midpoint of (x₁,y₁) and (x₂,y₂) is the average of their coordinates.
What you can do with this.
Coordinate geometry
Find the midpoint of a segment in homework problems.
Map midpoints
Approximate halfway between two locations.
Bisecting a line segment
Geometry constructions and proofs.
CAD design
Locate the center between two reference points.
Average of two points
Quick averaging with x and y handled together.
Physics setups
Center of mass for two equal masses.
Game development
Find midpoint between two sprites.
Midpoint 2026 — what's current
Foundational coordinate geometry.
Frequently asked.
This version handles 2D. For 3D, average the z-coordinate the same way.
Yes — coordinates can be any real number.
No. All math runs in your browser.
Same as input — Euclidean distance √((x₂−x₁)² + (y₂−y₁)²).