97.1k views
2 votes
sarah is plotting her house and her friend Angela's house on a grid. sarah's house is at (4,7) and angela's house is at (2,3). how far apart on the grid are the houses

User WithoutOne
by
5.6k points

1 Answer

3 votes
Let
P1 = (x1, y1) = (4, 7)
P2 = (x2, y2) = (2, 3)
The first thing to do in this case is to find the distance between two points by the following equation:
d (P1, P2) = root ((x2-x1) ^ 2 + (y2-y1) ^ 2)
d (P1, P2) = root ((2-4) ^ 2 + (3-7) ^ 2) = 4.47
answer
The houses are separated 4.47 units.
User Ritesh Choudhary
by
6.3k points