 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | Find the distance between the points (5, 8) and (-3, 2). | 
| Answer» Distance between the points (5, 8) and (-3, 2) `" "=sqrt((x_(2)-x_(1))^(2)+(y_(2 )-y_(1)) ^(2)) =sqrt((-3-5)^(2)+(2-8)^(2))` `" "=sqrt((-8)^(2) +(-6)^(2))=sqrt(64+36)=sqrt (100)=10 ` units | |