Midpoint Formula
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.
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.
What Each Variable Means
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
Step-by-Step Examples
Example 1: Finding a midpoint
Problem: Find the midpoint between (2, 4) and (8, 10).
Assign each point's x and y values.
x₁=2, y₁=4, x₂=8, y₂=10Add and divide by 2.
x = (2 + 8) / 2 = 5Add and divide by 2.
y = (4 + 10) / 2 = 7Example 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.
Use M = ((x₁+x₂)/2, (y₁+y₂)/2) with the known endpoint and midpoint.
4 = (1 + x₂)/2, 6 = (1 + y₂)/2Multiply both sides by 2, then isolate x₂.
8 = 1 + x₂ → x₂ = 7Same process for the y-coordinate.
12 = 1 + y₂ → y₂ = 11Interactive Calculator
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
Find the midpoint between (0, 0) and (10, 4).
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.