How do you find the distance between (3,-2) and (5,-3)?

2 Answers
Aug 27, 2016

Use the distance formula to find the distance is #sqrt(5)#.

Explanation:

The (Euclidean) distance #d# between points #(x_1, y_1)# and #(x_2, y_2)# is given by the distance formula:

#d = sqrt((x_2-x_1)^2 + (y_2-y_1)^2)#

In our example, #(x_1, y_1) = (3, -2)# and #(x_2, y_2) = (5, -3)#, so we have:

#d = sqrt((5-3)^2+(-3-(-2))^2) = sqrt(2^2+(-1)^2) = sqrt(4+1) = sqrt(5)#

Aug 27, 2016

See below.

Explanation:

Suppose you are in Manhattan Center and you need to walk from 399 West 14th street to Empire State Building. What is the shortest feasible path to perform this walk? How do you measure distances in this case? Depending on the terrain topology there are more adequate ways of measuring distances. For the afore mentioned Manhattan trip, a feasible distance formula between points #p_1=(x_1,y_1)# and #p_2(x_2,y_2)# could be

#d(p_1,p_2) = abs(x_1-x_2)+abs(y_1-y_2) = abs(3-5)+abs(-2+3)=3#

There are a lot of ways of distance measure. What criteria must obey a measure to be a distance?

enter image source here