What is the cross product of #<5 , 5 ,-7 ># and #<5 ,1 ,-3 >#?

1 Answer
Jan 9, 2017

The cross product is #< -8, -20, -20 >#.

Explanation:

Given vectors #u# and #v#, the cross product of these two vectors, #uxxv# is given by:

enter image source here

Where

#uxxv=(u_2v_3-u_3v_2)veci-(u_1v_3-u_3v_1)vecj+(u_1v_2-u_2v_1)veck#

This process may look rather complicated but in reality isn't so bad once you get the hang of it.

We have vectors #<5,5,-7># and #<5,1,-3>#

This gives a #3xx3# matrix:

#abs((veci,vecj,veck),(5,5,-7),(5,1,-3))#

To find the cross product, first imagine covering up the #i# column (or actually do so if possible), and take the cross product of the #j# and #k# columns, similar to as you would using cross multiplication with proportions. In the clockwise direction, starting with the number at the top left, multiply the first number by its diagonal, then subtract the product of the second number and its diagonal. This is your new #i# component.

#(5*-3)-(1*-7)=-15-(-7)=-8#

#=>-8veci#

Now imagine covering up the #j# column. Similarly to above, take the cross product of the #i# and #k# columns. However, this time, whatever your answer is, you will multiply it by #-1#.

#-[(5*-3)-(5*-7)]=-[-15-(-35)]=-20#

#=>-20vecj#

Finally, imagine covering up the #k# column. Now, take the cross product of the #i# and #j# columns.

#(5*1)-(5*5)=5-25=-20#

#=>-20veck#

Therefore, the cross product is #< -8, -20, -20 ># or, equivalently, #(-8i-20j-20k)#.