Linear Span
BasisPrerequisites
Given a handful of vectors, what can you build from them using only addition and scalar multiplication? The answer — the set of all possible outputs — is the span. Span is the central construction of linear algebra: every subspace, every basis, every row space and column space is ultimately described as the span of something.
Definition
Let be a vector space over a field , and let be any subset. The span of is the set of all linear combinations of elements of :
\text{span}(S) \coloneqq \bigl\{ c_1 v_1 + \cdots + c_k v_k : k \ge 0,\ v_1, \ldots, v_k \in S,\ c_1, \ldots, c_k \in F \bigr\}. \tag{1}
Two boundary cases:
- by convention: a sum of zero vectors is the empty sum, which equals .
- , the line through the origin in the direction of .
Examples
Span in . Let and .
- — the -axis.
- — the whole plane.
- — still just the -axis, because is already a multiple of and contributes nothing new.
Span in . Let and .
- — the -plane.
- Adding : .
- Adding instead: — still just the -plane, since .
The pattern: a redundant vector (one that is already a linear combination of the others) does not enlarge the span.
The span is always a subspace
Theorem: For any , the set is a subspace of .
Proof. is non-empty ( via the empty combination). If and are two elements of , and , then
is again a linear combination of elements of , so .
Moreover, is the smallest subspace of containing : any subspace that contains must be closed under linear combinations, so it must contain every element of . In symbols:
\text{span}(S) = \bigcap \{W \subseteq V : W \text{ is a subspace and } S \subseteq W\}. \tag{2}
Spanning sets
A subset spans (or is a spanning set for ) if — that is, every vector in can be expressed as a linear combination of vectors in .
Example: spans . So does — but the third vector is redundant. And alone does not span .
A spanning set can be reduced: if any vector in is a linear combination of the others, it can be removed without changing . Repeating this process yields a minimal spanning set — one in which no vector is redundant — which is exactly what Linear Subspace calls a basis.
Why span is the right notion
Span answers the reachability question: which vectors are in the “reach” of a given set? This question appears in every corner of linear algebra:
- Is a vector in the column space of ? Equivalently, is ?
- Does a set of vectors cover all of ? Equivalently, does it span ?
- What is the smallest subspace containing a given set? Its span.
Summary
- is the set of all linear combinations of elements of ; by convention, .
- is always a subspace of , and it is the smallest subspace containing .
- A redundant vector — one that is already a linear combination of the others — does not change the span.
- spans if . Removing all redundancies from a spanning set yields a basis.