Exercise 1.4.3

Answers

Notice that when we apply ‘elimination’ process on a matrix A, at the end of the process, it becomes an upper triangular matrix. So we can search for matrices that when left multiply the A, they reduce the A to U. We look for one matrix for each step in an ‘elimination’ process.

Suppose A is n by n matrix. The first step is to transform the first elements of all rows except the first row to be zeros. We achieve this by multiply a number to the first row and subtract from each row below. Represented by a left multiply matrix, we have

E1 = [ 1 00 l 2110 l 3101 ln101 ]

Now apply step 2 of ‘elimination’ to change all the second elements for rows below the second row to zero, we have E2 = [1 0 0 0 1 0 0l3210 0ln21 ]

Continue this until we have En1 = [10 0 0 1 0 00 1 0 0ln,n11 ]

Now it’s clear that E = En1E2E1.

For A = [210 0 4 2 635 ], we have n = 3, so E1 = [ 1 00 l 2110 l 3101 ] and E2 = [1 0 0 0 1 0 0l321 ]

so E = E2E1 = [ 1 0 0 l 21 1 0 l 31 + l21l32l321 ] = [ 1 00 0 1 0 301 ]

And L = E1 = [100 0 1 0 301 ]

A = [210 0 4 2 635 ] = [100 0 1 0 301 ] [210 0 4 2 005 ]

User profile picture
2020-03-20 00:00
Comments