

InterviewSolution
Saved Bookmarks
1. |
Point R (h, k) divides a line segment between the axes m the ratio `1: 2`. Find equation of the line. |
Answer» `x/a + y/b = 1` given point R Is`R(h,k) = [(2*0 + 1*a)/(1+2) , (2*b+ 1*0)/(1+2)]` `h=a/3 & k=(2b)/3` `a=3h & b= (3k)/2` equation of line will be `x/(3h) + y/((3k)/2) = 1` `x/h + (2y)/k = 3` answer |
|