The distance between two points β the Pythagorean Theorem applied directly to coordinates.
The Mnemonic
Straight-Line Distance, Built From a Right Triangle
The Distance Formula finds the straight-line distance between two points (xβ, yβ) and (xβ, yβ): d = β[(xββxβ)Β² + (yββyβ)Β²].
This isn't a new, unrelated formula β it's the Pythagorean Theorem, applied directly to a coordinate grid. The horizontal difference (xββxβ) and vertical difference (yββyβ) form the two legs of a right triangle, and the straight-line distance between the points is exactly that triangle's hypotenuse.
The distance between two points is the hypotenuse of a right triangle built from their horizontal and vertical difference
π‘ Memory Trick
"The distance between two points β Pythagoras applied to coordinates." Subtract the x's, subtract the y's, square both differences, add them, take the square root β that's aΒ² + bΒ² = cΒ² with a = horizontal difference and b = vertical difference, solving directly for c (the distance).
Why It Works
The Direct Pythagorean Connection
Draw a horizontal line from one point and a vertical line from the other, and they meet at a third point, forming a right angle exactly there. The horizontal leg has length |xβ β xβ|, the vertical leg has length |yβ β yβ|, and the segment connecting the original two points is the hypotenuse of that right triangle.
Since the Pythagorean Theorem states legΒ² + legΒ² = hypotenuseΒ², substituting these coordinate differences directly gives (xββxβ)Β² + (yββyβ)Β² = dΒ², and solving for d (taking the square root of both sides) produces exactly the Distance Formula. Squaring the differences also conveniently handles the absolute value issue automatically β a negative difference squared still comes out positive.
Using It In A Proof
Applying the Formula Step by Step
The formula itself is mechanical, but it's worth working through the calculation in clear stages to avoid arithmetic slips, especially with negative coordinates.
1
Subtract the x-coordinates and y-coordinates separately
Find (xβ β xβ) and (yβ β yβ) as two separate values before doing anything else.
2
Square each difference
Squaring makes any negative differences positive automatically β this is why the formula never needs absolute value bars.
3
Add the two squares, then take the square root
The square root must be the LAST step β don't take separate square roots of each squared difference.
Full Worked Example
Finding Distance With Negative Coordinates
Given: Two points, (β3, 4) and (5, β2). Find: the distance between them.
Notice this is exactly a 6-8-10 right triangle (a scaled 3-4-5) β recognizing Pythagorean triples, from the Pythagorean Theorem lesson, can speed up distance calculations too.
When one of the two points is the origin (0,0), the Distance Formula simplifies to d = β(xΒ² + yΒ²) β recognizing this shortcut saves a subtraction step, and it comes up constantly in problems involving circles centered at the origin.
β οΈ Most Common Distance Formula Mistakes
Trap 1 β Taking the square root too early: Both squared differences must be added together FIRST, and the square root applied only to that final sum β taking separate square roots of each squared difference and adding those is a completely different (wrong) calculation.
Trap 2 β Sign errors with negative coordinates: Subtracting a negative coordinate requires careful sign handling (e.g., 5 β (β3) = 8, not 5 β 3 = 2) β a sign slip here changes the entire result, so double-check each subtraction individually.
β Quick Self-Test
1) State the Distance Formula. 2) How is the Distance Formula related to the Pythagorean Theorem? 3) Find the distance between (1,1) and (4,5). 4) Find the distance between (β2,3) and (2,0). 5) Why does squaring the coordinate differences eliminate the need for absolute value bars?