🔰vector

LaTeX ⟩ vector

example
code

(a1,a2,,an)(a_1, a_2, \cdots, a_n)

👉 向量

% vector
(a_1, a_2, \cdots, a_n)

u\|\vec{u}\|

👉 向量長度

% vector magnitude / norm / length
\|\vec{u}\|

u×v\mathbf{u}\times\mathbf{v}

👉 外積

% cross product
\mathbf{u}\times\mathbf{v}

uv\mathbf{u}\cdot\mathbf{v}

👉 內積

% dot product
\mathbf{u}\cdot\mathbf{v}

(u×v)×w(\mathbf{u}\times\mathbf{v})\times\mathbf{w}

👉 向量三重積

% vector triple product
(\mathbf{u}\times\mathbf{v})\times\mathbf{w}

(u×v)w(\mathbf{u}\times\mathbf{v})\cdot\mathbf{w}

👉 純量三重積

% scalar triple produc
(\mathbf{u}\times\mathbf{v})\cdot\mathbf{w}

[xyz]\begin{bmatrix} x & y & z \end{bmatrix}

% row vector
\begin{bmatrix} x & y & z \end{bmatrix}

[xyz]\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} % 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} [u1u2u3][v1v2v3]\begin{bmatrix} u_1 & u_2 & u_3 \end{bmatrix} \begin{bmatrix} v_1 \\ v_2 \\ v_3 \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} 

{v1,v2,,vn}\{ \mathbf{v_1}, \mathbf{v_2}, \cdots, \mathbf{v_n} \}

% set of vectors
\{ \mathbf{v_1}, \mathbf{v_2}, \cdots, \mathbf{v_n} \}

Last updated

Was this helpful?