document.write( "Question 149515: How do I solve the following system of linear equation\r
\n" );
document.write( "\n" );
document.write( "5x + 4y = 40\r
\n" );
document.write( "\n" );
document.write( "x + 2y = 11 \n" );
document.write( "
Algebra.Com's Answer #109699 by Alan3354(69443)![]() ![]() You can put this solution on YOUR website! How do I solve the following system of linear equation \n" ); document.write( "5x + 4y = 40 \n" ); document.write( "x + 2y = 11 \n" ); document.write( "----------- \n" ); document.write( "There's more than one way. I like determinants (I have an Excel sheet that does them).\r \n" ); document.write( "\n" ); document.write( "5 4 -40 \n" ); document.write( "1 2 -11 \n" ); document.write( "Det = (5*2)-(1*4) = 6\r \n" ); document.write( "\n" ); document.write( "x*Det = 4*(-11)-2*(-40) = 36 \n" ); document.write( "x = 6 \n" ); document.write( "----------- \n" ); document.write( "y*Det = -(5*(-11) - 1*(-40)) = 15 \n" ); document.write( "y = 2.5 \n" ); document.write( " \n" ); document.write( " |