learn.howToCalculate
learn.whatIsHeading
3D cross product of two vectors produces third perpendicular vector, used for normal calculations, torque, angular momentum.
단계별 가이드
- 1Input two 3D vectors (x,y,z)
- 2Calculate a × b using determinant method
- 3Result shows magnitude and direction
풀어진 예시
입력
a=(1,0,0), b=(0,1,0)
결과
a×b = (0,0,1) (perpendicular to both)
피해야 할 일반적인 실수
- ✕Forgetting right-hand rule
- ✕Confusing with dot product
자주 묻는 질문
Does order matter?
Yes, a×b = -b×a (anticommutative).
계산할 준비가 되셨나요? 무료 Cross Product3 D 계산기를 사용해 보세요
직접 시도해 보세요 →