Given vectors u and v, the cross product of these two vectors, uxxv is given by:
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 <-1,2,7> and <-3,1,4>
This gives a 3xx3 matrix in the form of:
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.
(2*4)-(7*1)=8-(7)=1
=>1veci
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.
-1[(-1*4)-(-3*7)]=-[-4-(-21)]=-(21-4)=-17
=>-17vecj
Finally, imagine covering up the k column. Now, take the cross product of the i and j columns.
(-1*1)-(-3*2)=-1-(-6)=6-1=5
=>5veck
Thus, the cross product is (i-17j+5k) or <1,-17,5>.