learn.howToCalculate
learn.whatIsHeading
3D cross product of two vectors produces third perpendicular vector, used for normal calculations, torque, angular momentum.
Guía paso a paso
- 1Input two 3D vectors (x,y,z)
- 2Calculate a × b using determinant method
- 3Result shows magnitude and direction
Ejemplos resueltos
Entrada
a=(1,0,0), b=(0,1,0)
Resultado
a×b = (0,0,1) (perpendicular to both)
Errores comunes a evitar
- ✕Forgetting right-hand rule
- ✕Confusing with dot product
Preguntas frecuentes
Does order matter?
Yes, a×b = -b×a (anticommutative).
learn.ctaText
Pruébalo tú mismo →