Exercise 1.4.10. Given a matrix A with entries , what are the following entries?
- first pivot
- the multiplier
that is used to multiply the first row and subtract it from the ith row
- the value that replaces
once the above operation occurs
- second pivot
Answer: The first pivot is , the entry in the first row and first column. (This assumes that that entry is non-zero and thus no row exchange is needed.)
For row i we need to eliminate the entry , the first entry in that row. Since
is used to multiply the first row, we must have
Since is used to multiply all the entries in the first row and subtract the resulting value from corresponding entries in the ith row, the result of applying this operation to the entry
is therefore
This operation is done on all rows, including the second row and the entry in the second column in that row, . The resulting value
then becomes the second pivot.
NOTE: This continues a series of posts containing worked out exercises from the (out of print) book Linear Algebra and Its Applications, Third Edition by Gilbert Strang.
If you find these posts useful I encourage you to also check out the more current Linear Algebra and Its Applications, Fourth Edition, Dr Strang’s introductory textbook Introduction to Linear Algebra, Fourth Edition
and the accompanying free online course, and Dr Strang’s other books
.