2階テンソルとベクトルの積
- 2階テンソルの前からベクトルを掛けると、2階テンソルの前とベクトルが同じ場合のみ2階テンソルの後のモノが出てくる。
2階テンソルの後ろのもの取り出したいなら、2階テンソルの前と同じベクトルを前から掛ける。
\begin{array}{lll}
\hline
e_x \cdot (e_x \otimes e_x) = e_x, & e_x \cdot (e_x \otimes e_y) = e_y, & e_x \cdot (e_x \otimes e_z) = e_z \\
e_x \cdot (e_y \otimes e_x) = 0, & e_x \cdot (e_y \otimes e_y) = 0, & e_x \cdot (e_y \otimes e_z) = 0 \\
e_x \cdot (e_z \otimes e_x) = 0, & e_x \cdot (e_z \otimes e_y) = 0, & e_x \cdot (e_z \otimes e_z) = 0 \\
\hline
e_y \cdot (e_x \otimes e_x) = 0, & e_y \cdot (e_x \otimes e_y) = 0, & e_y \cdot (e_x \otimes e_z) = 0\\
e_y \cdot (e_y \otimes e_x) = e_x, & e_y \cdot (e_y \otimes e_y) = e_y, & e_y \cdot (e_y \otimes e_z) = e_z\\
e_y \cdot (e_z \otimes e_x) = 0, & e_y \cdot (e_z \otimes e_y) = 0, & e_y \cdot (e_z \otimes e_z) = 0\\
\hline
e_z \cdot (e_x \otimes e_x) = 0, & e_z \cdot (e_x \otimes e_y) = 0, & e_z \cdot (e_x \otimes e_z) = 0\\
e_z \cdot (e_y \otimes e_x) = 0, & e_z \cdot (e_y \otimes e_y) = 0, & e_z \cdot (e_y \otimes e_z) = 0\\
e_z \cdot (e_z \otimes e_x) = e_x, & e_z \cdot (e_z \otimes e_y) = e_y, & e_z \cdot (e_z \otimes e_z) = e_z\\
\hline\\
\end{array}
- 2階テンソルの後からベクトルを掛けると、2階テンソルの後とベクトルが同じ場合のみ2階テンソルの前のモノが出てくる。
2階テンソルの前のもの取り出したいなら、2階テンソルの後ろと同じベクトルを後ろから掛ける。
\begin{array}{lll}
\hline
(e_x \otimes e_x) \cdot e_x = e_x, & (e_x \otimes e_y) \cdot e_x = 0, & (e_x \otimes e_z) \cdot e_x = 0 \\
(e_y \otimes e_x) \cdot e_x = e_y, & (e_y \otimes e_y) \cdot e_x = 0, & (e_y \otimes e_z) \cdot e_x = 0 \\
(e_z \otimes e_x) \cdot e_x = e_z, & (e_z \otimes e_y) \cdot e_x = 0, & (e_z \otimes e_z) \cdot e_x = 0 \\
\hline
(e_x \otimes e_x) \cdot e_y = 0, & (e_x \otimes e_y) \cdot e_y = e_x, & (e_x \otimes e_z) \cdot e_y = 0 \\
(e_y \otimes e_x) \cdot e_y = 0, & (e_y \otimes e_y) \cdot e_y = e_y, & (e_y \otimes e_z) \cdot e_y = 0 \\
(e_z \otimes e_x) \cdot e_y = 0, & (e_z \otimes e_y) \cdot e_y = e_z, & (e_z \otimes e_z) \cdot e_y = 0 \\
\hline
(e_x \otimes e_x) \cdot e_z = 0, & (e_x \otimes e_y) \cdot e_z = 0, & (e_x \otimes e_z) \cdot e_z = e_x \\
(e_y \otimes e_x) \cdot e_z = 0, & (e_y \otimes e_y) \cdot e_z = 0, & (e_y \otimes e_z) \cdot e_z = e_y \\
(e_z \otimes e_x) \cdot e_z = 0, & (e_z \otimes e_y) \cdot e_z = 0, & (e_z \otimes e_z) \cdot e_z = e_z \\
\hline
\end{array}