logoCalculator Hub Pro

Cross Product Calculator: Vector Multiplication

Calculate the cross product of two 3D vectors.

What is a Cross Product?

In vector algebra, the cross product of two vectors a and b results in a third vector that is perpendicular to both. It is commonly used in physics to calculate torque and magnetic force.

Calculation (Determinant Method)

  1. x = (a.y * b.z) - (a.z * b.y)
  2. y = (a.z * b.x) - (a.x * b.z)
  3. z = (a.x * b.y) - (a.y * b.x)