document.write( "Question 396179: Given two points on the line, input the equation of the line in standard form Ax + By = C. Reduce all fractional answers to lowest terms.\r
\n" );
document.write( "\n" );
document.write( "(7, -3), (4, -8)\r
\n" );
document.write( "\n" );
document.write( "I keep getting stuck on this one... The first step would be to find the slope ( y2-y1/ x2-x1) right? \n" );
document.write( "
Algebra.Com's Answer #281112 by ewatrrr(24785)  You can put this solution on YOUR website! \n" );
document.write( "Hi, Yes! first find slope \n" );
document.write( "Finding equation of the line in standard form Ax + By = C \n" );
document.write( "Using the point-slope formula, to find m \n" );
document.write( "(7, -3), \n" );
document.write( "(4, -8) m = -3-(-8) / 7-4 = 5/3 \n" );
document.write( "Using the standard slope-intercept form for an equation of a line y = mx + b \n" );
document.write( " where m is the slope and b the y-intercept. \n" );
document.write( " y = (5/3)x + b |using ordered pair Pt(7,-3) to solve for b \n" );
document.write( " -3 = (5/3)*7 + b \n" );
document.write( " - 3 - 35/3 = b \n" );
document.write( " -44/3 = b \n" );
document.write( " y = (5/3)x -44/3 |multiplying each term by 3 \n" );
document.write( " 3y = 5x -44 \n" );
document.write( " 5x - 3y = 44, equation of the line in standard form \n" );
document.write( " |
\n" );