123k views
5 votes
You plot your store location and a competitor's location on a map. your stores coordinations are x1, y1 and the competitor's are x2, y2. which formula would give you the straight line distance from your competitor to your store.

User Patrina
by
8.3k points

1 Answer

0 votes

Final answer:

To find the straight line distance between two points, use the formula √((x2 - x1)^2 + (y2 - y1)^2), where (x1, y1) are your store coordinates and (x2, y2) are the competitor's coordinates.

Step-by-step explanation:

To find the straight line distance between two points, we can use the formula for distance, which is derived from the Pythagorean theorem. The formula is √((x2 - x1)^2 + (y2 - y1)^2), where (x1, y1) are the coordinates of your store location and (x2, y2) are the coordinates of the competitor's location.

For example, if your store is located at (1, 4) and the competitor's store is located at (5, 8), the distance would be √((5 - 1)^2 + (8 - 4)^2).

Calculating this gives us √(4^2 + 4^2) = √(16 + 16) = √32.

User Ruchira
by
7.9k points