Midpoint Calculator

Find the midpoint between two points in 2D or 3D coordinate space.

Find the midpoint between two coordinate points

What Is the Midpoint Calculator?

The Midpoint Calculator finds the exact center point between two coordinates. The midpoint is the point that divides a line segment into two equal halves. Its coordinates are simply the averages of the corresponding coordinates of the endpoints.

Formula

Midpoint M = ((x₁ + x₂)/2, (y₁ + y₂)/2) In 3D: M = ((x₁+x₂)/2, (y₁+y₂)/2, (z₁+z₂)/2) Distance between P₁ and M equals distance between M and P₂: d(P₁,M) = d(M,P₂) = d(P₁,P₂)/2

How to Use

Enter the x and y coordinates of both endpoints (x₁, y₁) and (x₂, y₂). Click Calculate to find the midpoint coordinates, the distance between the points, and the slope of the segment.

Example Calculation

Points: A = (2, 4) and B = (8, 10) Midpoint M = ((2+8)/2, (4+10)/2) = (10/2, 14/2) = (5, 7) Verification: d(A,M) = √((5−2)²+(7−4)²) = √18 ≈ 4.243 d(A,B) = √((8−2)²+(10−4)²) = √72 ≈ 8.485 = 2 × 4.243 ✓

Understanding Midpoint

The midpoint formula is a fundamental tool in coordinate geometry with applications ranging from computer graphics (finding the center of bounding boxes, interpolating keyframes) to construction (finding the center of a wall or beam) to navigation (finding the halfway point of a journey).

In geometry, the midpoint theorem states that the segment connecting the midpoints of two sides of a triangle is parallel to and half the length of the third side. This powerful result has applications in proofs about parallelograms and trapezoids.

The concept extends to finding centroids of polygons (average of all vertices), which is important in physics (center of mass) and computational geometry (polygon simplification algorithms).

Frequently Asked Questions

What is the midpoint of a line segment?

The midpoint is the point exactly halfway between two endpoints. It divides the segment into two congruent halves and lies on the perpendicular bisector of the segment.

How is the midpoint formula derived?

Each coordinate of the midpoint is the average of the corresponding endpoint coordinates. This follows from the section formula: M divides AB in the ratio 1:1.

Can I find the midpoint in 3D?

Yes. In 3D, the midpoint is M = ((x₁+x₂)/2, (y₁+y₂)/2, (z₁+z₂)/2), extending the same averaging principle to all three coordinates.

What is the perpendicular bisector?

The perpendicular bisector of a segment passes through its midpoint and is perpendicular to the segment. Any point on the perpendicular bisector is equidistant from both endpoints.

Related Tools