Difference between revisions of "Manuals/calci/DYADIC"
| (2 intermediate revisions by 2 users not shown) | |||
| Line 32: | Line 32: | ||
#VECTORDIRECTPRODUCT([2.7,3.9,10.2],[14.5,19,-4]) = 72.45 | #VECTORDIRECTPRODUCT([2.7,3.9,10.2],[14.5,19,-4]) = 72.45 | ||
#DYADIC([-8,-4,2],[10,-45,67]) = 234 | #DYADIC([-8,-4,2],[10,-45,67]) = 234 | ||
| + | |||
| + | ==Related Videos== | ||
| + | {{#ev:youtube|v=tpL95Sd7zT0|280|center|Tensor Product}} | ||
==See Also== | ==See Also== | ||
| Line 39: | Line 42: | ||
==References== | ==References== | ||
| − | [http://www.pgccphy.net/ref/vprod.pdf | + | [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:41, 10 January 2019
OR VECTORDIRECTPRODUCT (a,b)
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle a} and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle b} 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 Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle VECTORDIRECTPRODUCT (a,b)} , Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle a} and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle b} 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:
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle AB=AB^T} = Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \begin{pmatrix} A_x \\ A_y \\ A_z \end{pmatrix}} Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle (B_x B_y B_Z)} =Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \begin{pmatrix} A_xB_x & A_xB_y & A_xB_z \\ A_yB_x & A_yB_y & A_yB_z \\ A_z B_x &A_zB_y & A_zB_z \end{pmatrix}}
- The direct product is non-commutative Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle (AB \neq BA)} .
- A few vector product identities are of interest:
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle A.BXC = AXB.C=B.CXA=BXC.A=C.AXB}
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle AX(BXC)= B.(A.C)- C(A.B)}
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle (AXB)XC = B(A.C)-A(B.C)}
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle (AXB).(CXD) = (AxB.D)C-(AxB.C)D}
Examples
- DYADIC([1,2,3],[8,7,6]) = 40
- VECTORDIRECTPRODUCT([14,17,20],[22,26,5]) = 850
- VECTORDIRECTPRODUCT([2.7,3.9,10.2],[14.5,19,-4]) = 72.45
- DYADIC([-8,-4,2],[10,-45,67]) = 234
Related Videos
See Also
References