Found a typo? Is this solution unclear? Let us know here. Please rate my easiness! It's quick and helps everyone guide their studies.
We want to find a lower triangular matrix, a diagonal matrix, and an upper triangular matrix, which we call respectively such that when multiplied together, we get .
First we perform row operations on until becomes an upper triangular matrix, keeping track of the the row operations performed:
The row operations performed are:
: row1 + row2 : -2*row1 + row4 : -2*row2 + row3 : -5*row2 + row4 : -7*row3 + row4
These row operations translate into the following 5 elementary matrices as described above:
Hence, we have
Let describe the matrix product of elementary matrices required to take to an upper triangular matrix.
Similarly, we perform 3 more row operations to make the diagonal entries of be all ones:
: 1/2*row1 : -1*row3 : 1/18*row4
and we let to describe the matrix product of elementary matrices required to make the diagonal entries of be all ones.
That is, we have our desired upper triangular matrix after multiplying :
In summary,
Since , we can invert and to attain and respectively:
.
Hence, we have
|