The linear span (sometimes just called span) of a set of Vectors (i.e. elements of a Vector Space) is the set of all the Linear Combinations derived from that set.
The result of the span operator always takes in a set of elements from a vector space and returns another set of vectors.
V = \text{span}(S) \iff S \subseteq V \text{ and V can *only* contain linear combinations of S}$$
### Theorem: Every Span of a Vector Space is a Subspace
Let $V_{\mathbb{F}}$ be a vector space and ${\vec{v}_{1}, \vec{v}_{2},..\vec{v}_{n}} \in V$ . Then $W = \text{span}\{\vec{v}_{1}, \vec{v}_{2}, ..\vec{v}_{n} \}$ is
a [Subspace](subspace.md) of $V_{\mathbb{F}}$.
### Checking Span via Matrices
We can use [matrices](matrix.md) to determine if a set of vectors span a vector space.
Let $V_{\mathbb{F}}^n$ be a vector space from the set $V^n$ which consists all $n$-tuples fixed over the field $\mathbb{F}$. For example, $\mathbb{R}_{\mathbb{R}}^2$ is the vector space of all $2$-tuples containing real numbers, fixed over the field of real numbers.
#ASK am i putting the vectors $\vec{v},etc$ and $t_{1}$ in the right sets?
Let $S$ be the set of vectors from the vector space $V_\mathbb{F}^n$ and $V^n$ be the set $S$ spans. We need to check if:
\boldsymbol{X}= \begin{bmatrix}
t_{1} \
t_{2} \
\dots \
t_{n}
\end{bmatrix} , t \in V
Thenwegetthematrix
[\boldsymbol{M|\boldsymbol{X}}]
This is a [Matrix Representation Of A Linear System](Matrix%20Representation%20Of%20A%20Linear%20System.md), specifically, a non-[homogenous](Linear%20System.md#Homogeneity) system and can be solved via [Gauss-Jordan Elimination](Gauss-Jordan%20Elimination.md) to get the [RREF](Reduced%20Row%20Echelon%20Form.md).
If the system is [consistent](Consistency.md) then $S_{k}$ spans $V^n$. This can be checked if:
* $\text{rank(}[\boldsymbol{M}|\boldsymbol{X}])= \text{rank}(\boldsymbol{M})$
* $\text{rank}(\boldsymbol{M}) = n$ - Because if this isn't the case, the system of $[\boldsymbol{M|X}]$ contains a row with zeroes in $\boldsymbol{M}$ but not in $\boldsymbol{X}$, making it inconsistent
This also implies that $k \geq n$ because the [Rank](Rank.md) is always lesser or equal to $\text{min}(k,n)$. If $k < n$ then $\text{rank}(\boldsymbol{M}) = k$ but $\text{rank}(\boldsymbol{M}|\boldsymbol{X}) = n$, making the system inconsistent
k \geq n \iff \text{There must be at least n or more vectors to span Vn}$$for this to occur.