Linear Combinations

Definition

A linear combination of Vectors v1,v2,,vnv_1, v_2, \dots, v_n from a Vector Space V\mathbb{V} is any vector of the form:

c1v1+c2v2++cnvnc_1v_1 + c_2v_2 + \dots + c_nv_n

where c1,c2,,cnc_1, c_2, \dots, c_n are scalars from the field F\mathbb{F} (usually R\mathbb{R} or C\mathbb{C}).

The scalars cic_i are called the coefficients of the linear combination.

Examples

In R2\mathbb{R}^2

Consider the vectors v1=(10)v_1 = \begin{pmatrix} 1 \ 0 \end{pmatrix} and v2=(01)v_2 = \begin{pmatrix} 0 \ 1 \end{pmatrix}

Then 3v12v2=(32)3v_1 - 2v_2 = \begin{pmatrix} 3 \ -2 \end{pmatrix} is a linear combination.

In fact, any vector in R2\mathbb{R}^2 can be written as a linear combination of these vectors! (Why?)

In Polynomial Space

Consider the polynomials p1(x)=1p_1(x) = 1 and p2(x)=xp_2(x) = x in the Vector Space of polynomials.

Then 2p1(x)+3p2(x)=2+3x2p_1(x) + 3p_2(x) = 2 + 3x is a linear combination.

Why Do We Care?

Linear combinations are fundamental to understanding:

  1. Spans - All possible vectors we can make from linear combinations
  2. Linear Independence - When vectors can't be written as combinations of each other
  3. Subspaces - Sets closed under linear combinations
  4. Bases - Minimal sets of vectors that can make everything in the space

Think of linear combinations as the "building blocks" of linear algebra. Just like you can build complex LEGO structures from simple pieces, you can construct any vector in your space using linear combinations of simpler vectors.

Exercise

Show that if vv and ww are in a vector space V\mathbb{V}, then any linear combination of them is also in V\mathbb{V}. (Hint: Use the Vector Space Axioms)