Matrix Factorizations
Tags | Math 104 |
---|
LU Factorization algorithm
Create that has the same first row and column as , and the rest are filled by a multiplication table (i.e. row element times column element fills that element).
Create
Create from such that it has the same second row and second column as , and repeat the filling in, and later, the creation of
Keep on repeating until you get a zero matrix for
We get , where the "L" is just the rows you created and the "U" is just the columns you created
Example
CR Factorization
Every matrix can be expressed as where is linearly independent columns and has linearly independent rows
The construction is actually very easy. Think about the matrix multiplication as the column interpretation, and it will be pretty obvious what you have to do.
Example
We call the reduced row echelon form
of . It is upper-triangular
Neat facts about the CR algorithm
- rows of R are LI, and the columns of C are LI
- the column span of is the same as the column span of , and the row span of is the same as the row span of . Take this at face value for now, we might come back to this later