Vector Spaces
Linear Combination
Express a target vector as a linear combination c1·v1 + c2·v2. Augment the column matrix [v1 | v2 | target] and row-reduce to back-substitute for the coefficients.
Example
linear combination
A vector b is a linear combination of v1, v2, … iff there exist scalars c1, c2, … such that c1·v1 + c2·v2 + … = b. Solving for the scalars requires row-reducing the augmented matrix [v1 | v2 | … | b].