How to find the distance and midpoint between two points
The distance between two points is found using the Pythagorean theorem applied to their coordinates, while the midpoint is the average of their respective - and -coordinates. This method applies whenever points are defined in a standard 2D Cartesian coordinate system.
The setup
Define the two given points as and . The distance between them is calculated using the formula . The midpoint of the segment connecting them is calculated using the formula .
The steps
- Identify and label the coordinates of and . 2. Substitute the - and -values into the distance formula, square the differences, sum them, and take the square root. 3. Substitute the values into the midpoint formula, add the respective coordinates, and divide by 2.
Checking the result
Verify that the calculated distance is strictly non-negative. To check the midpoint, confirm it lies exactly on the line segment by checking if the distance from to equals the distance from to , and that their sum equals the total distance .
Common errors
A frequent error is subtracting coordinates in the midpoint formula instead of adding them, confusing it with the slope or distance formula. Another error is adding coordinates in the distance formula before squaring, rather than subtracting.
Worked example
Find the distance and midpoint between and .
Let and . Calculate distance: Calculate midpoint: . The distance is and the midpoint is .
FAQ
Run your own problem
References: OpenStax College Algebra, Chapter 2: Equations and Inequalities · Stewart Calculus, Appendix B: Coordinate Geometry
See also