Distance & Midpoint
The distance between A(x₁, y₁) and B(x₂, y₂) is just Pythagoras on the right triangle whose legs are the horizontal gap (x₂−x₁) and the vertical gap (y₂−y₁): d = √[(x₂−x₁)² + (y₂−y₁)²]. Because the differences are squared, the order of the points never matters and the answer is always non-negative. The midpoint is even simpler — average the x-coordinates and average the y-coordinates: M = ((x₁+x₂)/2, (y₁+y₂)/2). Two CAT-useful facts fall straight out of these. First, equal distances let you prove a triangle is isosceles or equilateral or find a point on an axis equidistant from two given points (set the two distance expressions equal and the square roots drop away). Second, the midpoint formula is your fast route to the circumcentre of a right triangle (the midpoint of the hypotenuse) and to checking whether a quadrilateral is a parallelogram (diagonals share a midpoint). Keep the Pythagorean triples 3-4-5, 5-12-13, 8-15-17 in mind — many "find the distance" answers land on one of them.
✅ Solved examples
✏️ Practice — try these, take hints as needed
📝 Topic test — 8 questions
Auto-graded with full solutions; saved to your dashboard. Use the calculator and formula sheet (top-right) any time.
Formula Reference Sheet
Points, distance and division
| Distance between two points | d = √[(x₂−x₁)² + (y₂−y₁)²] |
|---|---|
| Midpoint of a segment | M = ((x₁+x₂)/2 , (y₁+y₂)/2) |
| Internal section (ratio m:n) | ((m·x₂+n·x₁)/(m+n) , (m·y₂+n·y₁)/(m+n)) |
| External section (ratio m:n) | ((m·x₂−n·x₁)/(m−n) , (m·y₂−n·y₁)/(m−n)) |
| Centroid of a triangle | ((x₁+x₂+x₃)/3 , (y₁+y₂+y₃)/3) |
Lines, slope and area
| Slope of a line | m = (y₂−y₁)/(x₂−x₁) |
|---|---|
| Slope–intercept form | y = mx + c |
| Two-point form | (y−y₁) = [(y₂−y₁)/(x₂−x₁)](x−x₁) |
| Intercept form | x/a + y/b = 1 |
| Parallel / perpendicular | parallel: m₁ = m₂ ; perpendicular: m₁·m₂ = −1 |
| Area of a triangle | ½|x₁(y₂−y₃) + x₂(y₃−y₁) + x₃(y₁−y₂)| |