document.write( "Question 61909: Find the point P where the line x = 1 + t, y = 2t, z = -3t intersects the plane x + y - z = -1.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #42710 by Nate(3500)![]() ![]() ![]() You can put this solution on YOUR website! x = 1 + t \n" ); document.write( "y = 2t \n" ); document.write( "z = -3t \n" ); document.write( "x + y - z = -1 \n" ); document.write( "1 + t + 2t + 3t = -1 \n" ); document.write( "6t = -2 \n" ); document.write( "t = -1/3 \n" ); document.write( "x = 1 + t = 1 - 1/3 = 2/3 \n" ); document.write( "y = 2t = 2(-1/3) = -2/3 \n" ); document.write( "z = -3t = -3(-1/3) = 1 \n" ); document.write( "( 2/3, -2/3, 1) \n" ); document.write( " |