span
the span of
is the set of linear combinations
. it is denoted
.
[cite:;taken from @calc_hubbard_2015 chapter 2.4.3]
[cite:;taken from @calc_hubbard_2015 chapter 2.4.3]
the span of a given set of vectors is the collection of all the possible linear combinations of the vectors of the set, i.e.:
let
be a vector space, let
and
, then 
let
let
be vectors in
; let
be the
matrix
. then
are linearly independent iff the row-reduced matrix
has a pivotal
in every column.
span
iff
has a pivotal 1 in every row.
let
, then 
let 
we have proven that
is a subset of
, now with that out of the way we need to check the 3 conditions that need to be satisfied for a subset to be a subspace
condition 1:
condition 2: addition closure
let
so there exist
so that:
condition 3: multiplication closure
let
so there exist
, such that 

condition 1:
let
let
by definition of span, a span of a set of vectors is the collection of all the possible linear combinations using said vectors
the span of a single vector would just be its own line expanded across the entire 3d region, because we cant reach other dimensions by constant multiplication or by addition of the vector to itself

the span of 2 linearly independant vectors is however more interesting because it would be visualized as a grid across the 3d space
for simplicity, we take the relatively simple vectors
that lie on the
grid which covers the
and
axes


the span of a single vector would just be its own line expanded across the entire 3d region, because we cant reach other dimensions by constant multiplication or by addition of the vector to itself
from sage.plot.plot3d.shapes2 import Line
my_plot = Line([(0,0,0),(1,1,1)], thickness=2, arrow_head=True, color='red') +\
Line([(-2,-2,-2),(2,2,2)], thickness=1) +\
text3d("vector", (0.6,0.6,0.6), rotation=45.0).rotate((0,0,0.5),0.5) +\
text3d("vector space", (-0.5,-0.5,-0.5), rotation=45.0).rotate((0,0,0.5),0.5)
<<sage3dhandler>>
the span of 2 linearly independant vectors is however more interesting because it would be visualized as a grid across the 3d space
for simplicity, we take the relatively simple vectors
given the vectors
is
in the span of the other three? we now reduce
since
contains a row of 0's, span.html says that
do not span
. however,
is still in the span of those vectors:
contains no pivotal 1, so Theorem 2.2.1 says there is a solution to
. but the solution is not unique:
has a column with no pivotal 1, so there are infinitely many ways to express
as a linear combination of
. for example,
is
in the span of
,
,
?
is
in the span of
,
,
?
[cite:;taken from @calc_hubbard_2015 example 2.4.6]
is
[cite:;taken from @calc_hubbard_2015 example 2.4.6]
are the vectors
linearly independent? do they span
? the matrix
so by span.html, part 1, the vectors are linearly independent. by part 2, these three vectors also span
.
vectors that are not linearly independent are linearly dependent.
[cite:;taken from @calc_hubbard_2015 example 2.4.7]
vectors that are not linearly independent are linearly dependent.
[cite:;taken from @calc_hubbard_2015 example 2.4.7]