Write a Mathematica WolframAlpha command to determine eithe
Write a Mathematica / WolframAlpha command to determine either the dot or cross product of any two three dimensional vectors u and v .
(5) Computational Engine Find Product of Two Three Dimensional Vectors Write a Mathematica WolframAlpha command to determine either the dot or cross product of any two three dimensional vectors u andSolution
Let u=(a,b,c) and v=(x,y,z) are two three dimensional vectrors.
Mathematica code for dot product is {a,b,c}.{x,y,z}
Mathematica code for cross product is Cross[{a,b,c},{x,yz}]
Note: In cross product c must be capital and remain all are small latters

