The midpoint of a line segment is the point sitting exactly halfway between the two ends.
Halfway means: the horizontal distance is split evenly, AND the vertical distance is split evenly.
So all we do is take the average of the x-coordinates and the average of the y-coordinates .
Averaging = "meet in the middle".
Given two points A ( x 1 , y 1 ) A(x_1, y_1) A ( x 1 , y 1 ) and B ( x 2 , y 2 ) B(x_2, y_2) B ( x 2 , y 2 ) , the midpoint M M M is the unique point on segment A B AB A B such that A M = M B AM = MB A M = M B (equal distances). Its coordinates are
M = ( x 1 + x 2 2 , y 1 + y 2 2 ) M = \left(\frac{x_1 + x_2}{2},\ \frac{y_1 + y_2}{2}\right) M = ( 2 x 1 + x 2 , 2 y 1 + y 2 )
We do not memorise the formula — we build it.
Intuition Feynman picture
Walk from A A A to B B B . The horizontal journey is x 2 − x 1 x_2 - x_1 x 2 − x 1 . Halfway means you've walked half of it. Start at x 1 x_1 x 1 , add half the trip.
Deriving the x-coordinate:
The horizontal gap between the two points is x 2 − x 1 x_2 - x_1 x 2 − x 1 .
Why this step? Distance along the x-axis is just the difference of x-values.
Half of that gap is x 2 − x 1 2 \dfrac{x_2 - x_1}{2} 2 x 2 − x 1 .
Why? "Midpoint" literally means half the horizontal distance.
Start at x 1 x_1 x 1 and move that half:
x M = x 1 + x 2 − x 1 2 x_M = x_1 + \frac{x_2 - x_1}{2} x M = x 1 + 2 x 2 − x 1
Why start at x 1 x_1 x 1 ? We measure the midpoint's position from point A A A .
Simplify:
x M = 2 x 1 + x 2 − x 1 2 = x 1 + x 2 2 x_M = \frac{2x_1 + x_2 - x_1}{2} = \frac{x_1 + x_2}{2} x M = 2 2 x 1 + x 2 − x 1 = 2 x 1 + x 2
Why? Common denominator 2 2 2 ; the x 1 x_1 x 1 terms combine to 2 x 1 − x 1 = x 1 2x_1 - x_1 = x_1 2 x 1 − x 1 = x 1 .
By identical reasoning in the vertical direction:
y M = y 1 + y 2 2 y_M = \frac{y_1 + y_2}{2} y M = 2 y 1 + y 2
That's the whole formula — it's just two averages. ✅
Worked example Predict before you compute
Points A ( 2 , 3 ) A(2,3) A ( 2 , 3 ) and B ( 6 , 3 ) B(6,3) B ( 6 , 3 ) . Forecast: same y y y , so the midpoint's y y y stays 3 3 3 ; the x x x is halfway between 2 2 2 and 6 6 6 , so 4 4 4 . Guess ( 4 , 3 ) (4,3) ( 4 , 3 ) .
Verify: x M = 2 + 6 2 = 4 x_M=\frac{2+6}{2}=4 x M = 2 2 + 6 = 4 , y M = 3 + 3 2 = 3 y_M=\frac{3+3}{2}=3 y M = 2 3 + 3 = 3 → ( 4 , 3 ) (4,3) ( 4 , 3 ) . ✔
Worked example Example 1 — basic midpoint
Find the midpoint of A ( − 4 , 1 ) A(-4, 1) A ( − 4 , 1 ) and B ( 2 , 7 ) B(2, 7) B ( 2 , 7 ) .
x M = − 4 + 2 2 = − 2 2 = − 1 x_M = \frac{-4+2}{2} = \frac{-2}{2} = -1 x M = 2 − 4 + 2 = 2 − 2 = − 1
Why? Average the x's; − 4 + 2 = − 2 -4+2=-2 − 4 + 2 = − 2 , divide by 2.
y M = 1 + 7 2 = 8 2 = 4 y_M = \frac{1+7}{2} = \frac{8}{2} = 4 y M = 2 1 + 7 = 2 8 = 4
Midpoint = ( − 1 , 4 ) = (-1, 4) = ( − 1 , 4 ) .
Worked example Example 2 — find the missing endpoint
M ( 3 , − 2 ) M(3, -2) M ( 3 , − 2 ) is the midpoint of A ( 1 , 4 ) A(1, 4) A ( 1 , 4 ) and B ( x , y ) B(x, y) B ( x , y ) . Find B B B .
Set up each average:
1 + x 2 = 3 ⇒ 1 + x = 6 ⇒ x = 5 \frac{1+x}{2} = 3 \quad\Rightarrow\quad 1+x = 6 \quad\Rightarrow\quad x = 5 2 1 + x = 3 ⇒ 1 + x = 6 ⇒ x = 5
Why multiply by 2 first? To undo the "÷2" inside the average and free x x x .
4 + y 2 = − 2 ⇒ 4 + y = − 4 ⇒ y = − 8 \frac{4+y}{2} = -2 \quad\Rightarrow\quad 4+y = -4 \quad\Rightarrow\quad y = -8 2 4 + y = − 2 ⇒ 4 + y = − 4 ⇒ y = − 8
B = ( 5 , − 8 ) B = (5, -8) B = ( 5 , − 8 ) .
Worked example Example 3 — using midpoint to prove a property
Do the diagonals of the quadrilateral with vertices P ( 1 , 1 ) , Q ( 5 , 3 ) , R ( 6 , 7 ) , S ( 2 , 5 ) P(1,1),\ Q(5,3),\ R(6,7),\ S(2,5) P ( 1 , 1 ) , Q ( 5 , 3 ) , R ( 6 , 7 ) , S ( 2 , 5 ) bisect each other?
Diagonal P R PR P R midpoint: ( 1 + 6 2 , 1 + 7 2 ) = ( 3.5 , 4 ) \left(\frac{1+6}{2}, \frac{1+7}{2}\right) = (3.5,\ 4) ( 2 1 + 6 , 2 1 + 7 ) = ( 3.5 , 4 ) .
Diagonal Q S QS QS midpoint: ( 5 + 2 2 , 3 + 5 2 ) = ( 3.5 , 4 ) \left(\frac{5+2}{2}, \frac{3+5}{2}\right) = (3.5,\ 4) ( 2 5 + 2 , 2 3 + 5 ) = ( 3.5 , 4 ) .
Why does this matter? Same midpoint ⇒ diagonals cross at their middles ⇒ the figure is a parallelogram .
Yes, they bisect each other. ✔
Common mistake Subtracting instead of adding
Wrong idea: "Midpoint uses x 2 − x 1 2 \frac{x_2 - x_1}{2} 2 x 2 − x 1 ." It feels right because the distance uses a subtraction.
Why it fails: x 2 − x 1 2 \frac{x_2-x_1}{2} 2 x 2 − x 1 is only half the length , not a position . You forgot to start from x 1 x_1 x 1 . Position needs addition (averaging) .
Fix: Midpoint = average = sum ÷ 2 . Distance = difference. Different jobs.
Common mistake Mixing coordinates
Wrong: pairing x 1 x_1 x 1 with y 2 y_2 y 2 , e.g. x 1 + y 2 2 \frac{x_1+y_2}{2} 2 x 1 + y 2 .
Why tempting: careless when numbers are close together.
Fix: Never mix axes. x's only average with x's; y's only with y's.
Common mistake Endpoint problems: dividing when you should double
Wrong: halving M M M to find missing endpoint.
Fix: From x 1 + x 2 = x M \frac{x_1+x}{2}=x_M 2 x 1 + x = x M , multiply both sides by 2 → x = 2 x M − x 1 x = 2x_M - x_1 x = 2 x M − x 1 . (Handy shortcut!)
Recall Feynman: explain to a 12-year-old
You and a friend stand on a number line. To find the exact spot between you, you don't guess — you add both your positions and split it in half. Do it for how far right/left you are (x) and how far up/down (y). Those two half-numbers are the "meeting point." That's the midpoint!
"Add and halve, both x and y — the middle's where the averages lie."
Also: M idpoint = M ean (average).
Is the midpoint formula addition or subtraction? Why?
Midpoint of ( 0 , 0 ) (0,0) ( 0 , 0 ) and ( 8 , − 4 ) (8, -4) ( 8 , − 4 ) ?
M ( 2 , 2 ) M(2,2) M ( 2 , 2 ) , one endpoint ( 0 , 0 ) (0,0) ( 0 , 0 ) — find the other.
What is the midpoint of A ( x 1 , y 1 ) A(x_1,y_1) A ( x 1 , y 1 ) and B ( x 2 , y 2 ) B(x_2,y_2) B ( x 2 , y 2 ) ? ( x 1 + x 2 2 , y 1 + y 2 2 ) \left(\frac{x_1+x_2}{2}, \frac{y_1+y_2}{2}\right) ( 2 x 1 + x 2 , 2 y 1 + y 2 ) Why do we ADD (average) coordinates instead of subtracting them? A midpoint is a position ; averaging gives the point halfway. Subtraction gives distance , not location.
Midpoint formula is a special case of which formula and with what ratio? The section formula with ratio
1 : 1 1:1 1 : 1 (
m = n = 1 m=n=1 m = n = 1 ).
Given midpoint M ( x M , y M ) M(x_M,y_M) M ( x M , y M ) and endpoint A ( x 1 , y 1 ) A(x_1,y_1) A ( x 1 , y 1 ) , how do you find the other endpoint B B B ? B = ( 2 x M − x 1 , 2 y M − y 1 ) B = (2x_M - x_1,\ 2y_M - y_1) B = ( 2 x M − x 1 , 2 y M − y 1 ) .
Midpoint of ( − 4 , 1 ) (-4,1) ( − 4 , 1 ) and ( 2 , 7 ) (2,7) ( 2 , 7 ) ? If both diagonals of a quadrilateral share the same midpoint, what is the shape? A parallelogram (diagonals bisect each other).
Section formula — midpoint is the 1 : 1 1:1 1 : 1 case.
Distance formula — uses difference ; contrast with midpoint's sum .
Coordinate Geometry basics — plotting points, axes.
Properties of parallelograms — diagonals bisect each other.
Centroid of a triangle — average of three points (extends the averaging idea).
Midpoint M halfway between A and B
Walk x1 + half of gap x2-x1
Section formula ratio m:n
Diagonals bisect each other
Intuition Hinglish mein samjho
Dekho, midpoint ka matlab bilkul simple hai — do points ke beech ka exact center point. Socho tum aur tumhara dost ek number line pe khade ho; beech ka spot nikalne ke liye dono ki positions ko add karke 2 se divide kar do. Bas yahi kaam x-coordinate ke liye alag aur y-coordinate ke liye alag karna hai. Isliye formula banta hai M = ( x 1 + x 2 2 , y 1 + y 2 2 ) M = \left(\frac{x_1+x_2}{2}, \frac{y_1+y_2}{2}\right) M = ( 2 x 1 + x 2 , 2 y 1 + y 2 ) — sirf do averages.
Sabse important baat: midpoint mein hum add karte hain, subtract nahi. Bahut students distance wala x 2 − x 1 x_2 - x_1 x 2 − x 1 yahan laga dete hain, jo galat hai — kyunki difference sirf lambai (distance) batata hai, position nahi. Position chahiye to average lo, yaani sum divide by 2. Yaad rakhne ke liye: "Add and halve, both x and y."
Agar midpoint diya ho aur ek endpoint diya ho, aur dusra endpoint dhoondna ho, to trick hai: x = 2 x M − x 1 x = 2x_M - x_1 x = 2 x M − x 1 . Yaani pehle multiply by 2 karke average ka "÷2" hatao, phir known endpoint minus karo. Ye exam mein bahut common question hai.
Ye chhoti si cheez badi kaam ki hai — parallelogram prove karne mein (dono diagonals ka same midpoint hona chahiye), triangle ke centroid mein, aur geometry ke bahut saare proofs mein. Section formula ka bhi ye special case hai jahan ratio 1 : 1 1:1 1 : 1 hota hai. Ek baar averaging ka feel aa gaya, to kabhi bhoolega nahi.