Linear combination: an expression constructed from a set of terms by multiplying each term by a constant and adding the results.
Let's see some examples of linear combination.
There are two vector which is
a=[12] , b=[03]
When we scale by some scaling factor and add them, we can get those vectors and it's called a linear combination.
ex1) 0⋅a+0⋅b=[00]
✔ zero vector is also a linear combination!
ex2) 3⋅a+(−2)⋅b=[30]
Then what is the set of all of the vectors we could have created by taking linear combinations?
You can represent any vectors with some linear combinations of these vectors in R 2.
span( a,b )
span (0)=[00]
span(v1,v2,…,vn) = {c1v1,c2v2,…,cnvn∣ci ∈R for 1≤i≤n}
✔ span is the space of all of vectors that can be represented by a combination of these vectors.
✔ Any Dimension space can be represented by each unit vectors.
Conclusion
In this time, we learned that what do linear combination and span mean.