Lecture 9 - Linear Independence and Span

We'll cover linear independence and span today.

Span

Define span(v1,...,vk), where the argument is a list of vectors, as the set of linear combinations of those vectors, ie:

span(v1,...,vk)={α1v1++αkvk|v1,...,vkV,α1,...,αkF}

Note that:

  1. This collection of the span of some vectors is a subspace. (0span, closure under addition and scalar multiplication, see Chapter 2 - Finite-Dimensional Vector Spaces#2.A Span and Linear Independence).
  2. It is also the smallest subspace per Chapter 2 - Finite-Dimensional Vector Spaces#Linear Combinations and Span.
  3. If we were to define some subspaces Vi=span(vi) (ie: scalar multiples of vi), then we get that span(v1,...,vk)=V1+V2++Vk.
  4. There is a unique way to write any vector in span(v1,...,vk) precisely when V1++Vk is direct!

There's some language here to deal with span:

Terminology

If we say that span(v1,...,vk)=U we say that v1,...,vk spans U. Another way to say this is to say that v1,...,vk is a spanning list for U.

Let's look at some examples:

Example

Let V be the vector space of 2×2 matrices with real entries, so V=M2×2(R). Let U be the subset of 2×2 symmetric matrices with real entries. So uU if it's of the form:

u=[abbc]

Is U a subspace? Yes, due to all properties being considered. But can we find a spanning list u1,...,ukU?

Proof
Yes you can, using:

u1=[1000]u2=[0110]u3=[0001]

We can prove that span(u1,u2,u3)=U. We show both and . The is free since U itself is a subspace, so it must contain its span.

For the latter, we need to show that we can take any vector vU such that vspan. So then it must be of the form:

v=[abbc]=au1+bu2+cu3

For a,b,cR, so then vspan(u1,u2,u3).

Note that u1,u2,u3 isn't the only spanning list. We could add say:

u4=[1001]

and still u1,...,u4 is a spanning list.

But here the uniqueness of the combinations of u1,u2,u3 is interesting to us. But what if we had:

u1=0.5u1,u2=7u2,u3=πu3

These u1,u2,u3 is still a spanning list. In general, if you know that span(v1,...,vk), then span(α1v1,...,αkvk) is the same (provided that αi0).

So ideally:

This brings us to...

Linear Independence

Linear Independence

v1,...,vk are linearly independent if for all αiF we have:

α1v1++αkvk=0i(αi=0)

We already know 0v1++0vk=0. But this definition implies that this is the only way to write 0. Why is this the case? See Chapter 2 - Finite-Dimensional Vector Spaces#Linear Independence. If you wish to prove that v1,...,vk are linearly independent:

If and iff

When a definition is given in math, "if" is equivalent to "iff"!

Linear Dependence

v1,...,vk is linearly dependent if v1,...,vk is not Linear Independent (LI).

The negation is that there exist some α1,...,αk not all 0 such that:

α1v1++αkvk=0
Example

Consider (1,3),(1,1),(4,6). Are these LI or LD? They are dependent since:

(4,6)=(1,3)+3(1,1)

But use the definition:

1(1,3)+3(1,1)+(1)(4,6)=(0,0)=0

Notice that this is using the definition, still:

0v1+0v2+0v3=0

Which isn't interesting and doesn't use the definition.

Note that {} (the empty list) is LI, as the definition is vacuously satisfied. Also the list itself is LI or LD, not the vectors themselves.

Suppose I have a collection of vectors v1,v2,0,v3. This list is LD since we can put any scalar in front of 0:

0v1+0v2+17790+0v3=0

So any list containing the zero vector is LD.