ScalarTripleProduct[v1,v2,v3]
gives the scalar triple product of the three 3-vectors v1, v2, and v3 in the default coordinate system.
ScalarTripleProduct[v1,v2,v3,coordsys]
gives the scalar triple product of v1, v2, and v3 in the coordinate system coordsys.
ScalarTripleProduct
ScalarTripleProduct[v1,v2,v3]
gives the scalar triple product of the three 3-vectors v1, v2, and v3 in the default coordinate system.
ScalarTripleProduct[v1,v2,v3,coordsys]
gives the scalar triple product of v1, v2, and v3 in the coordinate system coordsys.
Details and Options
- To use ScalarTripleProduct, you first need to load the Vector Analysis Package using Needs["VectorAnalysis`"].
- ScalarTripleProduct[v1,v2,v3,coordsys] is computed by converting v1, v2, and v3 to Cartesian coordinates and then forming the scalar triple product.
Examples
Basic Examples (1)
Needs["VectorAnalysis`"]Compute the scalar triple product of three vectors in space:
r1 = {1, -3, 2};r2 = {3, 7, -5};r3 = {4, 1, 6};ScalarTripleProduct[r1, r2, r3]Use Det to obtain the same answer:
Det[{r1, r2, r3}]Find the equation of the plane passing through the points with position vectors r1, r2, and r3:
r = {x, y, z};ScalarTripleProduct[r - r1, r2 - r1, r3 - r1] == 0