Page 227 - Advanced_Engineering_Mathematics o'neil
P. 227
7.3 Reduced Row Echelon Form 207
EXAMPLE 7.15
Let
−3 1 0
A = .
4 −2 1
We will reduce A and, at the same time, find a 2 × 2matrix such that A = A R . Start with the
augmented matrix and reduce it:
⎛ ⎞
.
. . −3 1 0 . . 1 0
[A.I 2 ]= ⎝ ⎠
.
4 −21 . . 0 1
⎛ ⎞
.
1 −1/3 0 . . −1/3 0
((−1/3) times row one ) → ⎝ ⎠
.
4 −2 1 . . 0 1
.
⎛ ⎞
1 −1/3 0 . . −1/3 0
(add − 4 times row one to row two ) → ⎝ ⎠
.
0 −2/3 1 . . 4/3 1
.
⎛ ⎞
1 −1/3 0 . . −1/3 0
(multiply row two by − 3/2) → ⎝ ⎠
.
0 1 −3/2 . . −2 −3/2
.
⎛ ⎞
1 0 −1/2 . . −1 −1/2
( add 1/3rowtwotorowone ) → ⎝ ⎠
.
0 1 −3/2 . . −2 −3/2
.
.
=[A.I 2 ] R .
The first three columns of this reduced augmented matrix are A R , while the last two columns
form :
1 0 −1/2 −1 −1/2
A R = and = .
0 1 −3/2 −2 −3/2
As a check,
−1 −1/2 −3 1 0 1 0 −1/2
A = = = A R .
−2 −3/2 4 −21 0 1 −3/2
.
.
This is the reduced form of [A.I 2 ].
MAPLE’s pivot command is well suited to reducing a matrix A which has been entered
into the program. First look for the leading entries of the nonzero rows. The location of a leading
entry is called a pivot position. We obtain zeros above and below a leading entry by elementary
row operations, adding constant multiples of this row to the other rows if necessary. This is called
pivoting about this leading entry, and can be done in one operation which in MAPLE is called
pivot. If a leading entry α occurs in the i, j position of A, we can form a matrix B having zeros
above and below α by entering
B := pivot(A,i,j);
Copyright 2010 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part. Due to electronic rights, some third party content may be suppressed from the eBook and/or eChapter(s).
Editorial review has deemed that any suppressed content does not materially affect the overall learning experience. Cengage Learning reserves the right to remove additional content at any time if subsequent rights restrictions require it.
October 14, 2010 14:23 THM/NEIL Page-207 27410_07_ch07_p187-246