
Kelly K. answered 01/16/22
Dartmouth Engineer, AP Computer Science & Math Teacher
Hi Yuliya! To find the distance between two points, you can use the distance formula, where distance = the square root of ((x2 - x1)2 + (y2 - y1)2).
a) For part a of this problem, start by labeling your first point (-2,5) as (x1, y1) so x1 = -2 and y1 = 5. This is saying that the x value of our first point is -2 and the y value is 5. Next, label your second point (4,13) as (x2, y2), so x2 = 4 and y2= 13. When you plug these values into the formula, you'll be finding: distance = the square root of ((4 - (-2))2 + (13 - 5)2). If we simplify this, then the distance = the square root of ((4+2)2 + (8)2), or, simplified further, the distance equals the square root of (62 + 82). The square root of (62 + 82) is the square root of (36+64), or the square root of 100, which is 10. So 10 is the distance between these two points.
b) For part b, you're applying the same formula but you making (4, 13) the first point, so x1 = 4 and y1 = 13. (-2, 5) is the second point, so x2 = -2 and y2= 5. When you substitute these values into the formula, you get that the distance = the square root of ((-2 - 4)2 + (5 - 13)2), which simplifies to the square root of ((-6)2 + (-8)2). This further simplifies to the distance = the square root of (36 + 64), or the square root of 100, which is 10.
c) The answers are the same because the physical distance between the points will not change, regardless of which point you choose as the first point, (x1, y1) or the second point, (x2, y2).
I hope this helps!

Yuliya D.
Thank you!01/22/22
David W.
The distance formula: the square root of ((x2 - x1)2 + (y2 - y1)2) . . . ALWAYS uses the POSITIVE square root of the sum of squares.01/16/22