Exercise 3.1.12

Answers

Assuming k = min {m,n}. Set j be a integer variable and do repeatly the following process:

  • If Aij = 0 for all j, take i = i + 1 and omit following steps and repeat process directly.
  • If Aij0 for some j, interchange the i-th and the j-th row.
  • Adding Aij Aii times the i-th row to the j-th row for all j > i.
  • Set i = i + 1 and repeat the process.
User profile picture
2011-06-27 00:00
Comments