Midpoint
The point exactly between two others is just the average of their coordinates.
G0.2 already built the midpoint of a segment, geometrically. This lesson reads the same point off in numbers.
Two points, A and B, joined by a segment, with their midpoint M marked on it. A live reading gives A and B’s coordinates, and M’s coordinates as the average of each.
A labelled x and y axis with two draggable points, A and B, joined by a segment, and their midpoint M marked on it. A live reading gives both points' coordinates and M's coordinates as the average of each. This needs JavaScript switched on.
Drag A or B until they sit on opposite sides of the y-axis — the averaging still works even when one coordinate is negative and the other positive.
The point exactly halfway between two others, in both coordinates at once, is their midpoint — the same word G0.2 already used, now given a formula.
Averaging twice, not once
Halfway between two numbers on a line is their average — that is what “halfway” means for numbers. A midpoint is halfway in the x-direction and halfway in the y-direction, at the same time, so its coordinates are just that same averaging, done twice:
Most shapes are described by their corners, and a great deal of what a shape’s construction needs — centres of symmetry, the point a diagonal is bisected at, the anchor for a scaled copy — turns out to be a midpoint of two of those corners. Computing it directly from coordinates, with no drawing required, is what makes those other facts checkable by arithmetic instead of by eye.
diagonals-bisect showed a parallelogram’s diagonals cross at their shared midpoint. With
coordinates, that claim becomes checkable directly: compute the midpoint of each diagonal separately,
and see that both calculations land on the same pair of numbers.
Trying it on numbers
Find the midpoint of and .
.
Find the midpoint of and .
.
A segment has one endpoint at and midpoint at . What is the other endpoint?
If is the average of and , then : , . The other endpoint is .
This lesson counts as done once you get its exercise right. Nothing to tick off by hand.