document.write( "Question 1400: 1. How do you take a graph and generate an equation from it?\r
\n" );
document.write( "\n" );
document.write( "2. When comparing two linear equations, how can I tell if the corresponding lines are parallel? How can I tell if they are perpendicular? \n" );
document.write( "
Algebra.Com's Answer #454 by khwang(438)![]() ![]() ![]() You can put this solution on YOUR website! Given a system of two linear equations:\r \n" ); document.write( "\n" ); document.write( " a1 x + b1 y = c1...(1),\r \n" ); document.write( "\n" ); document.write( " a2 x + b2 y = c2...(2)\r \n" ); document.write( "\n" ); document.write( " slope of (1): m1 = -a1/b1 (if b1 <> 0)\r \n" ); document.write( "\n" ); document.write( " slope of (1): m2 = -a2/b2 (if b2 <> 0)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( " if a1/b1 = a2/b2 (same solpe) but is not equal to c1/c2 then the two lines \n" ); document.write( " are parallel\r \n" ); document.write( "\n" ); document.write( " if a1/b1 * a2/b2 = -1 (ie a1a2 = -b1b2 ) then the two lines \n" ); document.write( " are perpendicular.\r \n" ); document.write( "\n" ); document.write( " Try to think when b1 or b2 = 0 \n" ); document.write( " |