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).
learn.ctaText
इसे स्वयं आज़माएँ →