A linear combination is the fundamental "recipe" for building new vectors out of old ones. It's an expression made from two ingredients: Scalar Multiplication (scaling your ingredient vectors) and Vector Addition (mixing them together).
Let's say we have two vectors, v=[1,2] and w=[−3,1]. A linear combination is any vector that can be written in the form:
c1v1+c2v2+⋯+cnvn Where c1,c2,… are any scalars you choose. Let's compute one:
2v+1w=2[12]+1[−31]=[−15] So, the vector [−1,5] is one possible linear combination of v and w.