Algebra4 min read

Midpoint Formula

M = ((x₁+x₂)/2, (y₁+y₂)/2)

What is the Midpoint Formula?

The midpoint formula finds the center point between two coordinates by averaging the x-coordinates and the y-coordinates separately. The result is the point that splits the segment between them exactly in half — geometrically, it's the same idea as finding the average of two numbers on a number line, just applied to both dimensions of a coordinate plane at once.

Because it's just an average, the midpoint always lies exactly on the straight line connecting the two original points — it can never be off to one side. That also means the midpoint is always equidistant from both endpoints, which is the property that makes it useful for finding the center of a circle from two endpoints of a diameter, or the center of a rectangle from two opposite corners.

A useful way to check any midpoint answer: the two distances from the midpoint back to each original endpoint should come out equal when checked with the distance formula. If they don't, either the averaging was done incorrectly, or an x-value got averaged with a y-value by mistake — a common slip when working quickly.

What Each Variable Means

M
MidpointThe coordinate pair exactly halfway between the two given points.
x₁, y₁
First pointCoordinates of the starting point.
x₂, y₂
Second pointCoordinates of the ending point.

When to Use It

  • Finding the center point of a line segment
  • Locating the center of a circle given two endpoints of a diameter
  • Splitting a coordinate-geometry problem into two equal halves for further analysis
Advertisement

Step-by-Step Examples

Example 1: Finding a midpoint

Problem: Find the midpoint between (2, 4) and (8, 10).

1
Label the coordinates

Assign each point's x and y values.

x₁=2, y₁=4, x₂=8, y₂=10
2
Average the x-values

Add and divide by 2.

x = (2 + 8) / 2 = 5
3
Average the y-values

Add and divide by 2.

y = (4 + 10) / 2 = 7
Answer: M = (5, 7)

Example 2: Using the midpoint to find an endpoint

Problem: One endpoint of a segment is (1, 1) and its midpoint is (4, 6). Find the other endpoint.

1
Set up the midpoint equations

Use M = ((x₁+x₂)/2, (y₁+y₂)/2) with the known endpoint and midpoint.

4 = (1 + x₂)/2, 6 = (1 + y₂)/2
2
Solve for x₂

Multiply both sides by 2, then isolate x₂.

8 = 1 + x₂ → x₂ = 7
3
Solve for y₂

Same process for the y-coordinate.

12 = 1 + y₂ → y₂ = 11
Answer: The other endpoint is (7, 11)

Interactive Calculator

Result will appear here

Common Mistakes

  • Mistake: Averaging x with y instead of keeping the coordinates separate.

    Fix: Average the two x-values together and the two y-values together — never mix an x-value with a y-value.

  • Mistake: Forgetting to divide by 2 after adding.

    Fix: The midpoint is the average, not the sum — always divide each sum by 2.

Practice Questions

  1. Find the midpoint between (0, 0) and (10, 4).

  2. Find the midpoint between (-3, 5) and (7, -1).

Frequently Asked Questions

Can the midpoint formula be used to find a missing endpoint?

Yes — if you know one endpoint and the midpoint, set up M = ((x₁+x₂)/2, (y₁+y₂)/2) as two equations and solve for the unknown x₂ and y₂.

Does the midpoint always land exactly on the segment?

Yes — since it's the average of the two endpoints, it always lies exactly on the straight line between them, never off to one side.