document.write( "Question 463111: Given two points on the line, input the equation of the line in standard Ax + By = C. Reduce all fractional answers to lowest terms. (6,1), (5, 4) \n" ); document.write( "
Algebra.Com's Answer #317350 by amoresroy(361)![]() ![]() You can put this solution on YOUR website! (y - y1) / (x - x1) = (y - y2)/(x-x2) \n" ); document.write( "(y-1)/(x-6) = (y-4)/(x-5) \n" ); document.write( "(y-1)(x-5) = (x-6)(y-4) \n" ); document.write( "yx-5y-x+5 = xy-4x-6y+24 \n" ); document.write( "yx or xy cancels out \n" ); document.write( "Combining like terms you get \n" ); document.write( "4x-x+6y-5y = 24-5\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "3x +y = 19 \n" ); document.write( " |