Choose the dimension and enter the coordinates for each vector to calculate their cross product.
The cross product is a fundamental operation in vector algebra with applications in physics, engineering, and computer graphics. Here's a comprehensive guide on how to calculate the cross product of vectors in both 2D and 3D:
For two 2D vectors \(\vec{a} = (a_x, a_y)\) and \(\vec{b} = (b_x, b_y)\), their cross product is defined as:
\[ \vec{a} \times \vec{b} = a_x b_y - a_y b_x \]The result is a scalar value representing the signed area of the parallelogram formed by the two vectors.
For two 3D vectors \(\vec{a} = (a_x, a_y, a_z)\) and \(\vec{b} = (b_x, b_y, b_z)\), their cross product is defined as:
\[ \vec{a} \times \vec{b} = (a_y b_z - a_z b_y, a_z b_x - a_x b_z, a_x b_y - a_y b_x) \]The result is a vector perpendicular to both input vectors.
Let's calculate the cross product of two 2D vectors:
\(\vec{a} = (2, 3)\) and \(\vec{b} = (4, 5)\)
\[ \vec{a} \times \vec{b} = (2 \times 5) - (3 \times 4) = 10 - 12 = -2 \]The cross product is -2, indicating the signed area of the parallelogram formed by these vectors.
Let's calculate the cross product of two 3D vectors:
\(\vec{a} = (2, 3, 4)\) and \(\vec{b} = (5, 6, 7)\)
Therefore, the cross product of \(\vec{a}\) and \(\vec{b}\) is \((-3, 6, -3)\).
This diagram illustrates the cross product of 3D vectors \(\vec{a}\) and \(\vec{b}\). The resulting vector \(\vec{a} \times \vec{b}\) is perpendicular to both input vectors.