🔰vector
LaTeX ⟩ vector
\|\vec{u}\| % vector magnitude
example
code
👉 向量
% vector
(a_1, a_2, \cdots, a_n)
👉 向量長度
% vector magnitude / norm / length
\|\vec{u}\|
👉 外積
% cross product
\mathbf{u}\times\mathbf{v}
👉 內積
% dot product
\mathbf{u}\cdot\mathbf{v}
👉 向量三重積
% vector triple product
(\mathbf{u}\times\mathbf{v})\times\mathbf{w}
👉 純量三重積
% scalar triple produc
(\mathbf{u}\times\mathbf{v})\cdot\mathbf{w}
% row vector
\begin{bmatrix} x & y & z \end{bmatrix}
% column vector
\begin{bmatrix} x \\ y \\ z \end{bmatrix}
% dot product as matrix multiplication
\begin{bmatrix} u_1 & u_2 & u_3 \end{bmatrix}
\begin{bmatrix} v_1 \\ v_2 \\ v_3 \end{bmatrix}
% set of vectors
\{ \mathbf{v_1}, \mathbf{v_2}, \cdots, \mathbf{v_n} \}
Last updated
Was this helpful?