ifis a line in the 2-space and
is a point, then the distance between the point
and the line
is:
Can anyone explain briefly to me why is that so? Does it based on the concept of orthogonal projection?
Letbe the line passing through
and perpendicular to line
.
The slope of lineis:
Then the slope of lineis
.
The equation of lineis
The intersection point of the two lines is.
Then the distance between the point P0 and the line l is the distance between the points P0 and P1. Use the formula of distance between two points and you'll get the result you want to prove.
The shortest distance from a point to the line is perpendicular to the line (which I guess you could show with calculus if you didn't believe). And any perpendicular to the linewill have the form
.
Clearly to pass through (x0,y0) you need d to take the value. Then you can find where the perpendicular meets the line and so calculate the distance. You could do this in a general way, and it will turn out you get the answer that you do. I'm not sure there is any special reason why it turns out so elegantly (and it is even more elegant if you arrange to have a^2+b^2=1, which you can do for any line). It is also well worth noting that the sign of ax+by+c tells you which side of the line your point is on. This is extremely useful when you are doing geometry in a computer program - for instance you would probably test test whether a point is in a convex polygon using this kind of formula. I find this form of line equation far more useful than the usual y=mx+c form.
See Point-Line Distance--2-Dimensional -- from Wolfram MathWorld for a derivation
That formula is also true. To prove it, notice that the unit normal vector to the plane ax+by+cz+d=0 is, where
. If you travel t units along this vector, starting from the point
then you get to the point
. The condition for that point to lie on the plane is
. Solve that equation for t and you find that the distance from
to the plane is
.