✔ 最佳答案
we apply this formula when we want to find the distance between a line and a point
the equation of given line, L : Ax + By +C = 0
the given point, K ( x1 , y1)
d = abs[ ( Ax1 + By1 + C ) / root ( A^2 + B^2) ]
the distance is the line from K ┴ to L
i.e. the line with distance, d is ┴ to L
if there are two non // lines,
we never say the distance between them
the distance between two lines is only occured in // lines
if we want to find the distance between two // lines,
d = abs[ ( C - C' ) / root ( A^2 + B^2 ) ]
where the eqt of the two // lines are
Ax + By +C = 0 and Ax + By + C' = 0
For the question given,
Let the coordinate of the required point be ( x' , y' )
Substituting x = x' into 2x-y-3=0
y = 2x' -3
i.e. coordinate of the required pt. is ( x' , 2x' -3)
root 10 = ( 3x' + 2x' -3 -2 )/ root( 3^2 + 1^2)
10 = 5x' - 5
x' = 3
substituting x' = 3 into y' = 2x' -3
y' = 3
i.e. the required pt is ( 3 , 3)