2.710 min read
Linear Combinations
A linear combination of vectors is any expression where are scalars. The scalars are called the coefficients or weights.
Linear combinations are the core operation of linear algebra. Matrix-vector multiplication is a linear combination of the columns of weighted by the entries of .
There are three ways to picture a linear combination: symbolically (the formula above), geometrically (tip-to-tail addition of scaled arrows), and entry-by-entry (compute each entry of the result separately). All three perspectives are useful.
Formal View
Definition 2.7 — Linear Combination
A linear combination of vectors is any vector of the form
for scalars .
Why This Matters
Every matrix-vector product, every weighted average, every superposition of signals is a linear combination.
- Mixing colors: any color is a linear combination of red, green, blue basis colors
- Portfolio: total return is a linear combination of individual asset returns
- Image reconstruction: each pixel of a deblurred image is a linear combination of neighboring pixels
Quiz
Question 1
Is a linear combination of and ?
Common Mistakes
- Thinking linear combinations only use integer coefficients — any real number works.
- Forgetting that the result of a linear combination is a vector of the same size as the input vectors.