Abstract: 线性组合详细说明 Keywords: Linear Combinations
视频合并了1.0 1.1 1.2
向量加法和乘法计算
这里简单写一下加法和乘法计算
VECTOR ADDITION: $$ \textbf{v}=\begin{bmatrix} v_1\v_2 \end{bmatrix}\ \textbf{w}=\begin{bmatrix} w_1\w_2 \end{bmatrix}\ $$ add to: $$ \textbf{v}+\textbf{w}=\begin{bmatrix} v_1+w_1\v_2+w_2 \end{bmatrix}\ $$
VECTOR MULTIPLICATION: $$ 2\textbf{v}=\begin{bmatrix} 2v_1\2v_2 \end{bmatrix}\ -\textbf{v}=\begin{bmatrix} -v_1\newline -v_2 \end{bmatrix}\ $$ (写公式真累!!) 注意零向量和数字常量0的不同
线性组合
$$ c\textbf{v}+d\textbf{w}\ $$ 就是线性代数的基础
定义: the sum of $c\textbf{v}$ and $d\textbf{w}$ is a linear combination of $\textbf{v}$ and $\textbf{w}$
向量的表示
这个大家都会,画箭头嘛,从0点,画向坐标位置,标个箭头就okay了

Important Questions
Suppose $\textbf{u}$ $\textbf{v}$ $\textbf{w}$ are three-dimensional non-zero:
$c\textbf{u}$ fill a Linear
$c\textbf{u}+d\textbf{v}$ fill a plane
$c\textbf{u}+d\textbf{v}+e\textbf{w}$ fill a space(3d)
前提是这三个向量不在同一直线或同一个二维平面上,上面的三个important才成立!
总结
此篇详细说明了线性组合的一些基本问题