document.write( "Question 974425: Find the area of the triangle having verties at A(1,3,2) ,B(2,-1,1) ,C(-1,2,3). \n" ); document.write( "
Algebra.Com's Answer #596419 by Alan3354(69443)![]() ![]() You can put this solution on YOUR website! Find the area of the triangle having vertices at A(1,3,2) ,B(2,-1,1) ,C(-1,2,3). \n" ); document.write( "----------------- \n" ); document.write( "Vector AB = i - 4j - k \n" ); document.write( "Vector AC = -2i - j + k \n" ); document.write( "----- \n" ); document.write( "The area is 1/2 the magnitude of the cross product. \n" ); document.write( "----- \n" ); document.write( "+i +j +k \n" ); document.write( "+1 -4 -1 \n" ); document.write( "-2 -1 +1 \n" ); document.write( "-------------- \n" ); document.write( "i*(-4-1) - j*(1-2) + k*(-1-8) \n" ); document.write( "= -5i + j - 9k \n" ); document.write( "------ \n" ); document.write( "Mag = sqrt(5^2 + 1^1 + 9^2) = sqrt(107) \n" ); document.write( "Area = sqrt(107)/2 \n" ); document.write( " |