Span

The span of a set of vectors is the set of all linear combinations.

in there are three possible cases:

  • a line through the origin
  • a plane
  • the entire space

for any vectors, even if it’s the empty set ().

LEMMA

Adding or removing an element from the set doesn’t change the span if the element is a linear combination of the other vectors.

LEMMA

The span of linearly independent vectors is .

Matrices

The addition of two matrices happens element-wise. The scalar multiplication of a matrix is also element-wise. The zero matrix is the matrix in which every element is 0. If m (rows) = n (columns) the matrix is square.

Kronecker delta

The Kronecker delta is a function taking in and outputting if else . It’s used to define the Identity matrix.

Identity Matrix

The identity Matrix is defined as

Matrix-Vector multiplication

is the multiplication of Matrix with the vector .

  • The result is a vector with rows: each row is the scalar product of row with .
  • The resulting vector is the sum of all columns this is the definition of the linear combination.

The matrix-scalar multiplication is thus basically a linear combination.

The Identity matrix times a vector gives back that exact vector.

Column space

The column space of a matrix of is the span (set of all linear combinations) of the columns (interpreted as vectors).

In the same way as is always in the span of any set of vectors, is always part of the column space.

Rank of a Matrix

The rank of a matrix is a number between and which counts the number of independent columns.

A column is independent if it is not the linear combination of the previous ones (or the next ones, if you do it the other way round).

The rank is exactly if is the zero matrix.

We can reorder the columns of a matrix and thus get different independent columns, but the rank will stay the same.

Column space and Rank

The independent columns of span the column space of .

This can be proven by the lemma that says that adding elements that are a linear combination of the other ones, doesn’t change the span (Lemma 1.26 in the script).