I'm having some trouble internalizing the concept of span.
The question:
If u = [1,2,1]; v = [-2,2,4]; and w = [-1,4,5], describe Span{u,v,w}.
The attempt at a solution:
I formed a matrix using column vectors u, v, and w and row-reduced to RREF:
\begin{bmatrix}
1 & -2 & -1 \\
2 & 2 & 4 \\...