Difference between revisions of "Manuals/calci/VECTORDIRECTPRODUCT"
Jump to navigation
Jump to search
(Created page with "<div style="font-size:30px">'''VECTORDIRECTPRODUCT (a,b)'''</div><br/> *<math> a</math> and <math>b</math> any two set of values. ==Description== *This function shows the Vec...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 25: | Line 25: | ||
#<math>(AXB).(CXD)= (A.C)(B.D)-(A.D)(B.C)</math> | #<math>(AXB).(CXD)= (A.C)(B.D)-(A.D)(B.C)</math> | ||
#<math>(AXB).(CXD) = (AxB.D)C-(AxB.C)D</math> | #<math>(AXB).(CXD) = (AxB.D)C-(AxB.C)D</math> | ||
+ | |||
+ | ==Examples== | ||
+ | #VECTORDIRECTPRODUCT([1,2,3],[5,2,9]) = 36 | ||
+ | #VECTORDIRECTPRODUCT([4,-3,5],[3.3,4.2,6]) = 30.599999999999998 | ||
+ | #VECTORDIRECTPRODUCT([2,1,-3],[7,4,-9]) = 45 | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|v=tpL95Sd7zT0&t=81s|280|center|Tensor Product}} | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/DOTPRODUCT | DOTPRODUCT ]] | ||
+ | *[[Manuals/calci/CROSSPRODUCT | CROSSPRODUCT ]] | ||
+ | *[[Manuals/calci/CARTESIANPRODUCT | CARTESIANPRODUCT ]] | ||
+ | |||
+ | ==References== | ||
+ | [http://www.pgccphy.net/ref/vprod.pdf Direct Product] | ||
+ | |||
+ | |||
+ | *[[Z_API_Functions | List of Main Z Functions]] | ||
+ | *[[ Z3 | Z3 home ]] |
Latest revision as of 14:02, 7 February 2019
VECTORDIRECTPRODUCT (a,b)
- and any two set of values.
Description
- This function shows the Vector Direct product.
- The third type of vector multiplication is called the direct product, and is written AB.
- In , and are the two vectors.
- Multiplying one vector by another under the direct product gives a tensor result.
- The rectangular components of the direct product may be found by matrix multiplication: one multiplies the column vector A by the transpose of B, which gives a 3X3 matrix:
= =
- The direct product is non-commutative .
- A few vector product identities are of interest:
Examples
- VECTORDIRECTPRODUCT([1,2,3],[5,2,9]) = 36
- VECTORDIRECTPRODUCT([4,-3,5],[3.3,4.2,6]) = 30.599999999999998
- VECTORDIRECTPRODUCT([2,1,-3],[7,4,-9]) = 45
Related Videos
See Also
References