Skip to main content

Coordinate Plane: Distance and Midpoint

Use the Distance Formula and Midpoint Formula to measure length and find center points between two coordinates β€” essential tools for mapping, navigation, and geometry proofs.

Lesson 9 of 11 Geometry & Measurement Beginner ⏱ 8 min read
πŸ”₯ Why This Matters

GPS calculates your straight-line distance from a destination using the Distance Formula. Delivery apps find the midpoint between two locations for optimal warehouse placement. Game developers compute distances between characters to trigger events. Architects use midpoints to find the center of walls and openings. These two formulas β€” derived directly from the Pythagorean Theorem β€” are the bridge between algebra and geometry in coordinate space.

🎯 What You'll Learn
  • Apply the Distance Formula to find the straight-line distance between any two points
  • Apply the Midpoint Formula to find the exact center between two points
  • Understand why the Distance Formula is just the Pythagorean Theorem in disguise
πŸ“– Key Vocabulary
Distance Formula\(d = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}\) β€” the straight-line length between two coordinate points. Midpoint Formula\(M = \left(\frac{x_1+x_2}{2},\ \frac{y_1+y_2}{2}\right)\) β€” averages the x and y coordinates. SegmentThe portion of a line between two endpoints; the Distance Formula gives its length.
Key Concept β€” Why the Distance Formula Works

Any two points form the hypotenuse of an invisible right triangle. The legs are the horizontal change \(|x_2-x_1|\) and vertical change \(|y_2-y_1|\). Apply the Pythagorean Theorem:

\[ d = \sqrt{(x_2-x_1)^2 + (y_2-y_1)^2} \]

The Midpoint Formula simply averages both coordinates β€” it finds the point exactly halfway between the two endpoints in both the x and y directions.

Distance and Midpoint β€” Points A(1,2) and B(7,6)

Distance: \[d = \sqrt{(7-1)^2+(6-2)^2} = \sqrt{36+16} = \sqrt{52} \approx 7.21\]
Midpoint: \[M = \left(\frac{1+7}{2}, \frac{2+6}{2}\right) = (4, 4)\]

The hidden right triangle has legs of 6 (horizontal) and 4 (vertical).

Worked Example 1 β€” Basic: Distance Between Two Points

Find the distance between P(3, 4) and Q(9, 12).

\[ d = \sqrt{(9-3)^2 + (12-4)^2} = \sqrt{36+64} = \sqrt{100} = 10 \]

The distance is 10 units β€” this is a 6-8-10 Pythagorean triple, scaled from 3-4-5.

Worked Example 2 β€” Intermediate: Midpoint and Segment Bisector

Segment AB has endpoints A(βˆ’2, 5) and B(6, βˆ’1). Find the midpoint M. Then find the distance from A to M and confirm it equals half the total AB distance.

  1. Midpoint: \(M = \left(\frac{-2+6}{2}, \frac{5+(-1)}{2}\right) = (2, 2)\)
  2. Distance AB: \(d = \sqrt{(6-(-2))^2+(-1-5)^2} = \sqrt{64+36} = \sqrt{100} = 10\)
  3. Distance AM: \(d = \sqrt{(2-(-2))^2+(2-5)^2} = \sqrt{16+9} = \sqrt{25} = 5\)
  4. Confirm: AM = 5 = 10/2 βœ“ β€” the midpoint bisects AB exactly.
Worked Example 3 β€” Real World: Optimal Meeting Point

Two fire stations are located at coordinates (2, 8) and (10, 4) on a grid map (each unit = 1 km). Where should a new fire equipment depot be placed to be equidistant from both stations?

\[ M = \left(\frac{2+10}{2}, \frac{8+4}{2}\right) = (6, 6) \]

The depot should be placed at coordinate (6, 6), exactly 5 km from each station (verify: \(\sqrt{(6-2)^2+(6-8)^2} = \sqrt{16+4} = \sqrt{20} \approx 4.47\) km).

✏️ Quick Check
  1. Find the distance between (0, 0) and (5, 12).
  2. Find the midpoint of the segment with endpoints (βˆ’4, 3) and (2, βˆ’7).
  3. A segment has midpoint (3, 5) and one endpoint (1, 2). Find the other endpoint.
β–Ά Show Answers
  1. \(\sqrt{25+144} = \sqrt{169} =\) 13 (a 5-12-13 triple).
  2. \(\left(\frac{-4+2}{2}, \frac{3+(-7)}{2}\right) =\) (βˆ’1, βˆ’2).
  3. If midpoint = (3,5) and one point = (1,2): \(\frac{1+x_2}{2}=3 \to x_2=5\); \(\frac{2+y_2}{2}=5 \to y_2=8\). Other endpoint: (5, 8).
⚠️ Common Mistakes
  • Forgetting to square root at the end: \(d^2 = 100\) means \(d = 10\), not \(d = 100\).
  • Subtracting instead of averaging in the midpoint formula: The midpoint uses \(\frac{x_1+x_2}{2}\) (add, then divide) β€” not the difference.
  • Negative coordinates causing sign errors: When computing \((x_2-x_1)^2\), the sign inside doesn't matter since it's squared. But be careful with arithmetic: \((βˆ’3βˆ’5)^2 = (βˆ’8)^2 = 64\), not βˆ’64.
βœ… Key Takeaways
  • Distance Formula = Pythagorean Theorem applied to coordinate differences: \(d = \sqrt{\Delta x^2 + \Delta y^2}\).
  • Midpoint Formula averages the x-coordinates and averages the y-coordinates: \(M = \left(\frac{x_1+x_2}{2}, \frac{y_1+y_2}{2}\right)\).
  • Midpoints bisect segments β€” each half is equal in length.
  • Recognize triples: 3-4-5, 5-12-13, 6-8-10 appear often in coordinate problems.
πŸ’Ό Career Connection β€” GIS & Urban Planning

Geographic Information System (GIS) analysts calculate distances between locations constantly β€” determining service areas, optimizing routes, and placing facilities. Urban planners use midpoints to find equidistant community center locations. Every mapping application β€” from Google Maps to emergency dispatch systems β€” relies on the Distance Formula extended to geographic coordinates (latitude/longitude).

Calculator Connection

The Distance Formula Calculator (2D) finds the exact distance between any two coordinate points with step-by-step work. The Midpoint Formula Calculator computes the exact center point between any two coordinates.

Try it with the Calculator

Apply what you've learned with these tools.

Distance Formula (2D)
Calculates the distance between two points in a 2D plane.
Use calculator β†’
Midpoint Formula Calculator
Find the exact center point (midpoint) between two coordinates.
Use calculator β†’
← Previous Lesson
Back to
Volume of 3D Shapes
Continue Learning
Up Next: Similar Figures and Indirect Measurement
Next Lesson →
Test Your Knowledge

Coordinate Plane: Distance and Midpoint β€” Quiz

5 questions per attempt  Β·  Intermediate  Β·  Pass at 70%

Start Quiz β†’

More in Geometry & Measurement

Points, Lines, and Angles Triangle Fundamentals Pythagorean Theorem
← All Geometry & Measurement lessons