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 #<9,2,8># and #<1,8,4>#
This gives a #3xx3# matrix:
#abs((veci,vecj,veck),(9,2,8),(1,8,4))#
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)-(8*8)=8-(64)=-56#
#=>-56veci#
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#.
#-[(9*4)-(8*1)]=-[36-(8)]=-28#
#=>-28vecj#
Finally, imagine covering up the #k# column. Now, take the cross product of the #i# and #j# columns.
#(9*8)-(2*1)=72-2=70#
#=>70veck#
Therefore, the cross product is #< -56, -28, 70 ># or, equivalently, #(-56i-28j+70k)#.