Posts tagged vector cross product
Finding the cross product of two vectors

To take the cross product of two vectors (a1,a2,a3) and (b1,b2,b3), we’ll set up a 3x3 matrix with i, j, and k across the first row, the components from vector a across the second row, and the components from vector b across the third row. Then we’ll evaluate the 3x3 matrix by breaking it down into determinants.

Read More