Given a line, find a point on the line which is equidistant from two points A and B

804 Views Asked by At

I seem to be missing something obvious here.

I am given a line r: $x + y -2 = 0$ and two points $A = (1,2)$ and $B = (3,4)$

So I decided that I needed to find a point P in which d(AP) = d(BP)

I thus equaled the equations of $d(AP)$ and $d(BP)$, eventually reaching that $2y + 6x - 20 = 0$

Taking $y = -3x + 10$, I equaled this equation to the equation of my line, which I took to be $y = -x + 2$

This yielded the point $P = (6,-4)$ as a result, which is a point on r. However, when I proceed to calculate d(AP) and d(BP), they are not equal. Where did I go wrong?

4

There are 4 best solutions below

2
On

By eyeballing, the bisector (=locus of equal distances) of $(1,2)$ and $(3,4)$ should be $$ x-y+1=0.$$ Check again how you arrived at $2y+6x-20=0$ instead.

0
On

Bisector should be $$x+y=5$$ and not $2y+6x-20=0$.

4
On

The parametric equations of the line r are

$$x=t $$ $$y=2-t $$

$$d ^2(AP)=(1-t)^2+(2-2+t)^2$$ $$d^2 (BP)=(3-t)^2+(4-2+t)^2$$

thus $$d^2 (AP)=2t^2-2t+1$$ $$=d^2 (BP)=2t^2-2t+13$$

The point P does not exist.

0
On

The line containing $A$ and $B$ is $x - y +1=0$

This line is perpendicular to $x+y+2 = 0.$ Which means that the only way that a point on the line $x+y+2=0$ is the same distance to $A$ as to $B$ is if the line perpendicularly bisects $AB.$ (which it doesn't) And if it did, then every point on the line would be equal distance from $A$ as it is to $B.$