

InterviewSolution
Saved Bookmarks
1. |
Find the distance of the point `(3, - 5)`from the line `3x - 4y - 26 =0`. |
Answer» the point given is `P(3,-5)` line given is `3x - 9y-26=0` as we know , `D= |(Ax_1+By_1+C)/(sqrt(A^2+B^2))|` `D= |(3*3+(_4)(-5) -26)/sqrt(3^2 + (-4)^2)|` `|(9+20-26)/(sqrt(9+16))|` `D= |3/5|` `=3/5` answer |
|