

InterviewSolution
Saved Bookmarks
1. |
Find the point which represents three-fourth of the distance from the point (3, 2) to the point (-5, 6). |
Answer» Mid point of the line segment joining the points (3, 2) and (-5, 6) = [(x1 + x2)/2, (y1 + y2)/2] = [(3 - 5)/2, (2 + 6) /2] = (-1, 4) Mid point of the line segment joining (3, 2) and (-5, 6) is at one-half of the distance from (3, 2). Midpoint of the segment joining the points (-1, 4) and ((-5, 6) = [(-1 + 5)/2, (4 + 6) /2] = (2, 5) The point (2, 5) represents three-fourth of the distance from the point (3, 2) to the point (-5, 6). |
|