선형결합 - Linear Combination 선형결합이란 다음과 같은 벡터들의 결합을 의미한다. $$a_{1}x_{1}\;+\;a_{2}x_{2}\;+\;a_{3}x_{3}\;+.... = y$$ 여기서 x는 벡터를, a는 각각의 벡터에 곱해진 계수(coefficient)를 의미한다. 예를 들어보면 좀 더 이해가 잘 된다. 예 1) $$x\left[\begin{matrix}1\\0\\0\\ \end{matrix} \right] + y\left[\begin{matrix}0\\1\\0\\ \end{matrix} \right] + z\left[\begin{matrix}0\\0\\1\\ \end{matrix} \right] = \left[\begin{matrix}x\\y\\z\\ \end{matrix} \ri..