🧮 Algebra
📍Midpoint & Distance
Average the coordinates to find the middle, use Pythagoras to measure the slanted road — two pocket tools for the coordinate plane.
Mark two points on a map and two questions appear at once: where is the middle between them, and how far apart are they? On the grid of coordinates, both questions have clean formulas — one uses averaging, the other uses the Pythagorean theorem.
Midpoint: average the coordinates
The midpoint of two points takes the average of the x-coordinates and the average of the y-coordinates:
For and : the x-coordinate is , the y-coordinate is , so the midpoint is . Why average? Because "dead center" means equally far from both ends — and the average stands exactly in the middle of two numbers.
Measure the flat cases first
Distance comes free in two special situations:
- Same row (equal y-coordinates): the distance is the difference of the x-coordinates, e.g. to is 4 apart;
- Same column (equal x-coordinates): the distance is the difference of the y-coordinates.
Slanted pairs are not so generous — but they do hand over these two "legs": from to the horizontal gap is and the vertical gap is .
Slanted distance: Pythagoras steps in
Treat the horizontal and vertical gaps as the two legs of a right triangle; the slanted road is the hypotenuse. From to : go 3 across and 4 up, so
The classic 3-4-5 triangle. Any slanted distance can be measured by assembling an invisible right triangle like this.
The distance formula: Pythagoras in disguise
Write the routine as a general rule and you get the distance formula:
It is not a new theorem — the first difference is the horizontal leg, the second is the vertical leg, and it is still Pythagoras wearing a coat. Applied to and : .
(3, -2) → Quadrant IV
Walk x steps horizontally, then y steps vertically — the ordered pair (x, y) pins down exactly one point.
Drag the points on the plane: see how easy distance is on the same row or column, then slant them and feel the moment Pythagoras takes over.
Squaring erases the minus
Do not panic if comes out negative: a negative squared turns positive, so the order of the points does not matter. The only real way to err is forgetting to square the differences.
Check yourself
Quick quiz
1. What is the midpoint of (1, 2) and (5, 6)?
2. What is the distance from (0, 0) to (6, 8)?
3. What is the distance from (0, 0) to (5, 12)?