InterviewSolution
Saved Bookmarks
| 1. |
The points (x, 2) is equidistant from (8, -2) and (2, -2). Find the value of x. |
|
Answer» Let A = (2, 2) B = (8, -2) C = (2, -2) By data AB = AC = AB2 = AC2 ⇒ (8 – x)2 + (-2 -2)2 = (x – 2)2 + (2 + 2)2 64 + x2 + 16x + 16 = x2 + 4 - 4x + 16 -16x + 4x = 4 -64 ⇒ – 12x = -60 ∴ x = 5 |
|