How to write Latex tensor product symbol ? Given two vectors v, w, we can form a tensor using the outer product (dyadic product), which is denoted v ⊗ w.

Latex tensor product symbol / Latex dyadic product symbol

You can use \otimes or \bigotimes function:

$$
\mathbf{v}=\left[\begin{array}{c}
v_{1} \\
v_{2} \\
\vdots \\
v_{n}
\end{array}\right], \mathbf{w}=\left[\begin{array}{c}
w_{1} \\
w_{2} \\
\vdots \\
w_{m}
\end{array}\right]
$$

Tensor product of $\mathbf{v}$ and $\mathbf{w}$ is given by

$$
\underset{\underset{\scriptstyle\backslash\text{bigotimes}}{\scriptstyle}}{\mathbf{v} \bigotimes \mathbf{w}} = 
\underset{\underset{\scriptstyle\backslash\text{otimes}}{\scriptstyle}}{\mathbf{v} \otimes \mathbf{w}}=\left[\begin{array}{cccc}
v_{1} w_{1} & v_{1} w_{2} & \cdots & v_{1} w_{m} \\
v_{2} w_{1} & v_{2} w_{2} & \cdots & v_{2} w_{m} \\
\vdots & \vdots & \ddots & \vdots \\
v_{n} w_{1} & v_{n} w_{2} & \cdots & v_{n} w_{m}
\end{array}\right]
$$
v=[v1v2vn],w=[w1w2wm]

Tensor product of v and w is given by

vwbigotimes=vwotimes=[v1w1v1w2v1wmv2w1v2w2v2wmvnw1vnw2vnwm]

Examples

Tensor product of 3 vectors x=[x1x2],y=[y1y2],z=[z1z2]

$$
\mathbf{x} \otimes \mathbf{y} \otimes \mathbf{z}=
\begin{aligned}
\left[\begin{array}{l}
x_{1} \\
x_{2}
\end{array}\right] \otimes\left[\begin{array}{l}
y_{1} \\
y_{2}
\end{array}\right] \otimes\left[\begin{array}{l}
z_{1} \\
z_{2}
\end{array}\right]=\left[\begin{array}{l}
x_{1} \\
x_{2}
\end{array}\right] \otimes\left[\begin{array}{l}
y_{1} z_{1} \\
y_{1} z_{2} \\
y_{2} z_{1} \\
y_{2} z_{2}
\end{array}\right] =\left[\begin{array}{l}
x_{1} y_{1} z_{1} \\
x_{1} y_{1} z_{2} \\
x_{1} y_{2} z_{1} \\
x_{1} y_{2} z_{2} \\
x_{2} y_{1} z_{1} \\
x_{2} y_{1} z_{2} \\
x_{2} y_{2} z_{1} \\
x_{2} y_{2} z_{2}
\end{array}\right]
\end{aligned}
$$
xyz=[x1x2][y1y2][z1z2]=[x1x2][y1z1y1z2y2z1y2z2]=[x1y1z1x1y1z2x1y2z1x1y2z2x2y1z1x2y1z2x2y2z1x2y2z2]