document.write( "Question 205585: Hi all, I cant seem to get this next problem sorted. I need to find the direction cosines of the vector:
\n" );
document.write( "~w = 2~i - ~j + 5~k.
\n" );
document.write( "(Again, the ~ symbols refer to arrows in the positive direction above each value, with ~ in-between referring to the arrow being above both values together)
\n" );
document.write( "Any help with notes would be really good.
\n" );
document.write( "Thanks, -Nick. \n" );
document.write( "
Algebra.Com's Answer #155208 by Alan3354(69443)![]() ![]() You can put this solution on YOUR website! I need to find the direction cosines of the vector: \n" ); document.write( "w = 2i - j + 5k \n" ); document.write( "The 3 direction cosines are the cosines of the angles between the vector and the x, y and z-axes. \n" ); document.write( "Find the dot product of w with a unit vector along each axis. \n" ); document.write( "Angle A = x cos \n" ); document.write( "Angle B = y cos \n" ); document.write( "Angle C = z cos \n" ); document.write( "------ \n" ); document.write( "w dot x = |2 -1 5||1 0 0| = 2 \n" ); document.write( "2 = |w|*|x|cos(x) \n" ); document.write( "|w| = sqrt(4+1+25) = sqrt(30) \n" ); document.write( "cos(x) = 2/sqrt(30) x direction cosine \n" ); document.write( "--------------------- \n" ); document.write( "w dot y = |2 -1 5||0 1 0| = -1 \n" ); document.write( "cos(y) = -1/sqrt(30) y cosine \n" ); document.write( "-------------------- \n" ); document.write( "w dot z = |2 -1 5||0 0 1| = 5 \n" ); document.write( "cos(z) = 5/sqrt(30) z cosine \n" ); document.write( " \n" ); document.write( " |