document.write( "Question 1104946: Solve the system by back substitution.
\n" );
document.write( "2x+4y+z+3w=1
\n" );
document.write( "-2y-12z-4w=-16
\n" );
document.write( "z+w=2
\n" );
document.write( "-5w=-15
\n" );
document.write( "The solution set is \n" );
document.write( "
Algebra.Com's Answer #719674 by jim_thompson5910(35256)![]() ![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "Start from the bottom equation and work your way up \n" ); document.write( "Solve the fourth equation for w \n" ); document.write( "-5w=-15 \n" ); document.write( "-5w/(-5)=-15/(-5) \n" ); document.write( "w = 3\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Then use that value of w to plug into the third equation. Notice we're going backwards or up the chain of equations. After w is replaced, solve for z \n" ); document.write( "z+w = 2 \n" ); document.write( "z+3 = 2 \n" ); document.write( "z+3-3 = 2-3 \n" ); document.write( "z = -1\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Now use z = -1 and w = 3 to plug into the second equation. Solve for y \n" ); document.write( "-2y-12z-4w = -16 \n" ); document.write( "-2y-12(-1)-4(3) = -16 \n" ); document.write( "-2y+12-12 = -16 \n" ); document.write( "-2y = -16 \n" ); document.write( "-2y/(-2) = -16/(-2) \n" ); document.write( "y = 8\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Use y = 8, z = -1, w = 3 to plug into the first equation. Solve for x \n" ); document.write( "2x+4y+z+3w=1 \n" ); document.write( "2x+4(8)+(-1)+3(3)=1 \n" ); document.write( "2x+32-1+9=1 \n" ); document.write( "2x+40=1 \n" ); document.write( "2x+40-40=1-40 \n" ); document.write( "2x=-39 \n" ); document.write( "2x/2=-39/2 \n" ); document.write( "x = -39/2\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "The value of x as a fraction is x = -39/2 \n" ); document.write( "The value of x in decimal form is x = -19.5\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "In summary we got the following values \n" ); document.write( "x = -39/2 \n" ); document.write( "y = 8 \n" ); document.write( "z = -1 \n" ); document.write( "w = 3\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "So the solution is (x,y,z,w) = (-39/2, 8, -1, 3)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Note: you can optionally express -39/2 as -19.5 \n" ); document.write( "If you do so, then the solution would be (x,y,z,w) = (-19.5, 8, -1, 3) \n" ); document.write( " \n" ); document.write( " |