document.write( "Question 204880: Hi all, I am having some trouble with vectors at the moment, I was hoping someone could show me how to do the following problems correctly.
\n" );
document.write( "a) Find the distance between (2, -3, 1) and (-1, 0, -3)
\n" );
document.write( "b) Find the maginitude of the vector ~w = 2~i - ~j + 4~k. (The ~ symbols represent an arrow above the values in the positive direction, I didnt know how to express this properly)
\n" );
document.write( "Any help would be great,
\n" );
document.write( "Thanks, -Nick. \n" );
document.write( "
Algebra.Com's Answer #154630 by Alan3354(69443)![]() ![]() You can put this solution on YOUR website! a) Find the distance between (2, -3, 1) and (-1, 0, -3) \n" ); document.write( "It's the sqrt of the sum of the squares of the differences, dx, dy and dz \n" ); document.write( "d^2 = 3^2 + 3^2 + 4^2 = 9+9+16 \n" ); document.write( "d^2 = 34 \n" ); document.write( "d = sqrt(34) \n" ); document.write( "----------- \n" ); document.write( "b) Find the maginitude of the vector ~w = 2~i - ~j + 4~k. (The ~ symbols represent an arrow above the values in the positive direction, I didnt know how to express this properly) \n" ); document.write( "------------------ \n" ); document.write( "Mag = the sqrt of the sum of the squares. \n" ); document.write( "r = sqrt(4 + 1 + 16) \n" ); document.write( "r = sqrt(21) \n" ); document.write( "r is the distance from the Origin to the endpoint of the vector. \n" ); document.write( " |