document.write( "Question 18759: I have to solve this 4x4 matrix using Cramer's Rule:
\n" );
document.write( "4x + 0y + 3z - 2w = 2
\n" );
document.write( "3x + 1y + 2z - 1w = 4
\n" );
document.write( "1x - 6y - 2z + 2w = 0
\n" );
document.write( "2x + 2y + 0z - 1w = 1
\n" );
document.write( "Once I get to finding the determinants of the three 3x3 matrices, I am completly lost. Do you solve like a normal 3x3 and just multiply the determinent found by the number on the outside? After that is it simply repeating the same process for the other variables and adding the answers together? \n" );
document.write( "
Algebra.Com's Answer #531666 by richwmiller(17219)![]() ![]() You can put this solution on YOUR website! 4,0,3,-2,2 \n" ); document.write( "3,1,2,-1,4 \n" ); document.write( "1,-6,-2,2,0 \n" ); document.write( "2,2,0,-1,1 \n" ); document.write( "D=39 \n" ); document.write( "Dx=52 \n" ); document.write( "Dy=39 \n" ); document.write( "Dz=52 \n" ); document.write( "Dw=143 \n" ); document.write( "x=Dx/D= 52/39 = 1.33333333 \n" ); document.write( "y=Dy/D= 39/39 = 1 \n" ); document.write( "z=Dz/D= 52/39 = 1.33333333 \n" ); document.write( "w=Dw/D= 143/39 = 3.66666667 \n" ); document.write( " |