Find the distance d between the points P19 4 8 and P210 7 2
Find the distance d between the points P1=(9, 4, 8) and P2=(10, 7, 2) by first finding the vector v from P1 to P2, then finding the length of v. Use the square root symbol \'\' where needed to give an exact value for your answer.
VECTOR V= (...)
DISTANCE = (...)
Solution
The vector v between the points P1 = (9,-4,8) and P2 = (-10,7,-2) is ( -10 -9, 7-(-4), -2-8 ) = (-19, 11,-10). Then the distance from the point P1 to the point P2 is ||v|| = [ (-19)2+(11)2+(-10)2] = ( 361+ 121+100) = 582.
